16 lines
335 B
C++
16 lines
335 B
C++
#include "lib_main.cpp"
|
|
|
|
#if OS_WINDOWS
|
|
#if BUILD_CONSOLE_INTERFACE
|
|
int wmain(int argc, WCHAR **argv) {
|
|
Win32_Entry_Point(argc, argv);
|
|
return 0;
|
|
}
|
|
#else
|
|
int wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nShowCmd) {
|
|
Win32_Entry_Point(__argc, __wargv);
|
|
return 0;
|
|
}
|
|
#endif
|
|
#endif
|