2013-01-23 20:14:11 +00:00
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
#include "main_code.h"
|
|
|
|
|
|
|
|
int APIENTRY WinMain(HINSTANCE hCurrentInst, HINSTANCE hPreviousInst,
|
|
|
|
LPSTR lpszCmdLine, int nCmdShow)
|
|
|
|
{
|
|
|
|
//Create application
|
|
|
|
TMyApplication Application;
|
|
|
|
|
2013-02-04 07:44:34 +00:00
|
|
|
//Application.Width = 480;
|
|
|
|
//Application.Height = 320;
|
|
|
|
|
|
|
|
Application.Width = 320;
|
|
|
|
Application.Height = 480;
|
2013-01-23 20:14:11 +00:00
|
|
|
|
|
|
|
//Start application
|
|
|
|
return MainLoop(Application);
|
|
|
|
}
|