axmol/test_win32/winmain.cpp

24 lines
463 B
C++
Raw Normal View History

2010-10-11 17:26:01 +08:00
#include "winmain.h"
#include "TestApplication.h"
2010-10-11 17:26:01 +08:00
HINSTANCE g_hInstance;
int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
UNREFERENCED_PARAMETER(hPrevInstance);
UNREFERENCED_PARAMETER(lpCmdLine);
g_hInstance = hInstance;
int nRet = 0;
TestApplication app;
if (app.InitInstance() && app.initCocos2d())
{
nRet = app.Run();
}
2010-10-11 17:26:01 +08:00
return nRet;
}