You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
225 B
15 lines
225 B
3 years ago
|
#ifdef USE_WIN32_MAIN
|
||
|
# include <windows.h>
|
||
|
|
||
|
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
||
|
LPSTR lpCmdLine, int nShowCmd)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
#else
|
||
|
int main(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
#endif
|