-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoot.h
44 lines (43 loc) · 1.55 KB
/
Boot.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//---------------------------------------------------------------------------
#ifndef BootH
#define BootH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <Graphics.hpp>
//---------------------------------------------------------------------------
class TLoader : public TForm
{
__published: // IDE-managed Components
TTimer *Timer1;
TTimer *Timer2;
TTimer *Timer3;
TImage *Image1;
TLabel *Label1;
TLabel *Label2;
TLabel *Label3;
TLabel *Label4;
TLabel *Label5;
TLabel *Label6;
TLabel *Xaker;
TMemo *launch;
TTimer *Timer4;
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
void __fastcall Timer1Timer(TObject *Sender);
void __fastcall Timer3Timer(TObject *Sender);
void __fastcall Timer2Timer(TObject *Sender);
void __fastcall FormKeyDown(TObject *Sender, WORD &Key,
TShiftState Shift);
void __fastcall Timer4Timer(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TLoader(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TLoader *Loader;
//---------------------------------------------------------------------------
#endif