mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
578a9d9901
Portability fixes. Removed compiler warnings.
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
//---------------------------------------------------------------------------
|
|
#ifndef initsetupH
|
|
#define initsetupH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <Buttons.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <Graphics.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm2 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TImage *Image1;
|
|
TLabel *Label1;
|
|
TLabel *Label4;
|
|
TPanel *Panel1;
|
|
TLabel *Label5;
|
|
TLabel *Label6;
|
|
TLabel *Label2;
|
|
TEdit *Edit1;
|
|
TEdit *Edit2;
|
|
TBitBtn *BitBtn1;
|
|
TSpeedButton *SpeedButton1;
|
|
TBitBtn *BitBtn2;
|
|
void __fastcall BitBtn1Click(TObject *Sender);
|
|
void __fastcall BitBtn2Click(TObject *Sender);
|
|
void __fastcall SpeedButton1Click(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm2(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TForm2 *Form2;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|