-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainFmx.h
More file actions
25 lines (24 loc) · 872 Bytes
/
MainFmx.h
File metadata and controls
25 lines (24 loc) · 872 Bytes
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
//---------------------------------------------------------------------------
#ifndef MainFmxH
#define MainFmxH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <FMX.Controls.hpp>
#include <FMX.Forms.hpp>
#include <FMX.StdCtrls.hpp>
#include <FMX.Types.hpp>
//---------------------------------------------------------------------------
class TMikMod;
class TForm1 : public TForm
{
__published: // IDE-managed Components
private: // User declarations
TMikMod* FMikMod;
public: // User declarations
__fastcall TForm1(TComponent* Owner);
__fastcall virtual ~TForm1(void);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif