Exemple #1
0
int APIENTRY _tWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPTSTR lpCmdLine, _In_ int nCmdShow)
{
	UNREFERENCED_PARAMETER(hPrevInstance);
	UNREFERENCED_PARAMETER(lpCmdLine);

	Director * director = Director::GetInstance();
	MSG msg = director->Run();
	DELETE_PTR(director);

	return (int)msg.wParam;
}