15 lines
225 B
C
Raw Normal View History

2021-09-14 00:13:48 +02:00
#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