2015-01-07 17:50:15 +08:00
|
|
|
#include "main.h"
|
2015-01-08 13:36:59 +08:00
|
|
|
#include "SimulatorWin.h"
|
2015-01-07 17:50:15 +08:00
|
|
|
#include <shellapi.h>
|
|
|
|
|
2016-06-30 02:28:55 +08:00
|
|
|
int WINAPI _tWinMain(HINSTANCE hInstance,
|
2015-01-07 17:50:15 +08:00
|
|
|
HINSTANCE hPrevInstance,
|
|
|
|
LPTSTR lpCmdLine,
|
|
|
|
int nCmdShow)
|
|
|
|
{
|
|
|
|
UNREFERENCED_PARAMETER(hPrevInstance);
|
|
|
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
2015-01-08 13:36:59 +08:00
|
|
|
auto simulator = SimulatorWin::getInstance();
|
|
|
|
return simulator->run();
|
2015-01-07 17:50:15 +08:00
|
|
|
}
|