EXTERN_C int WINAPI Main()
{
	int result = wWinMain(nullptr, nullptr, nullptr, 0);
	ExitProcess(result);
	return 0;  // Never reached.
}
Exemplo n.º 2
0
extern "C" __declspec(dllexport) int WINAPI dllLauncherEntryPoint(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpstrCmdLine, int nCmdShow)
{
    return wWinMain(hInstance, hPrevInstance, lpstrCmdLine, nCmdShow);
}
Exemplo n.º 3
0
int wmain(int argc, wchar_t* argv[])
{
	wWinMain(GetModuleHandle(0),0,0,SW_SHOW);
}
Exemplo n.º 4
0
int _tmain(int argc, _TCHAR* argv[]) {
	wWinMain(0, 0, NULL, 0);
}
Exemplo n.º 5
0
int32_t main(int, const char**)
{
    return wWinMain(0, 0, 0, 0);
}
Exemplo n.º 6
0
void
__cdecl
wWinMainCRTStartup()
{
    ExitProcess(wWinMain(NULL, NULL, NULL, 0));
}
Exemplo n.º 7
0
int main(int argc, char** argv)
{
    return wWinMain(0, 0, 0, 0);
}