-
Notifications
You must be signed in to change notification settings - Fork 0
/
uDonate.h
30 lines (28 loc) · 949 Bytes
/
uDonate.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
//---------------------------------------------------------------------------
#ifndef uDonateH
#define uDonateH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
#include <Vcl.Imaging.pngimage.hpp>
//---------------------------------------------------------------------------
class TuDonateForm : public TForm
{
__published: // IDE-managed Components
TImage *Image1;
TPanel *Panel1;
TLabel *Label1;
TLabel *Label2;
TLinkLabel *LinkLabel1;
TGroupBox *GroupBox1;
private: // User declarations
public: // User declarations
__fastcall TuDonateForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TuDonateForm *uDonateForm;
//---------------------------------------------------------------------------
#endif