summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Win32GenEx/main.c
blob: 1cf9f811648245d29696d2f166e5eabf627174f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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