parent
15ff1e4e48
commit
186397c322
2 changed files with 16 additions and 0 deletions
@ -0,0 +1,4 @@ |
||||
project('winmaincpp', 'cxx') |
||||
|
||||
exe = executable('prog', 'prog.cpp') |
||||
add_test('winmaincpp', exe) |
@ -0,0 +1,12 @@ |
||||
#include<windows.h> |
||||
|
||||
class Foo; |
||||
|
||||
int APIENTRY |
||||
WinMain( |
||||
HINSTANCE hInstance, |
||||
HINSTANCE hPrevInstance, |
||||
LPSTR lpszCmdLine, |
||||
int nCmdShow) { |
||||
return 0; |
||||
} |
Loading…
Reference in new issue