-
Notifications
You must be signed in to change notification settings - Fork 0
/
LBAScreenViewer.cpp
32 lines (31 loc) · 1.23 KB
/
LBAScreenViewer.cpp
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
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USEFORM("LBAScreenViewer_main.cpp", frm_img);
USEFORM("About.cpp", frm_about);
USEFORM("Settings.cpp", frm_settings);
USEFORM("FullScreen.cpp", frm_fullscreen);
USEFORM("FLAControler.cpp", frm_controlers);
USEFORM("frmBMP2FLA.cpp", frm_BMP2FLA);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->Title = "LBA Screen Viewer";
Application->CreateForm(__classid(Tfrm_img), &frm_img);
Application->CreateForm(__classid(Tfrm_about), &frm_about);
Application->CreateForm(__classid(Tfrm_settings), &frm_settings);
Application->CreateForm(__classid(Tfrm_fullscreen), &frm_fullscreen);
Application->CreateForm(__classid(Tfrm_controlers), &frm_controlers);
Application->CreateForm(__classid(Tfrm_BMP2FLA), &frm_BMP2FLA);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------