-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplash.h
26 lines (25 loc) · 866 Bytes
/
splash.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
//---------------------------------------------------------------------------
#ifndef splashH
#define splashH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
//---------------------------------------------------------------------------
class TSplashUpdate : public TForm
{
__published: // Composants gérés par l'EDI
TLabel *Label1;
TLabel *Label2;
TLabel *Label3;
TLabel *Label4;
TLabel *Label5;
private: // Déclarations de l'utilisateur
public: // Déclarations de l'utilisateur
__fastcall TSplashUpdate(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TSplashUpdate *SplashUpdate;
//---------------------------------------------------------------------------
#endif