diff options
Diffstat (limited to 'test cases/windows/4 winmaincpp')
-rw-r--r-- | test cases/windows/4 winmaincpp/meson.build | 4 | ||||
-rw-r--r-- | test cases/windows/4 winmaincpp/prog.cpp | 17 |
2 files changed, 21 insertions, 0 deletions
diff --git a/test cases/windows/4 winmaincpp/meson.build b/test cases/windows/4 winmaincpp/meson.build new file mode 100644 index 0000000..4eda8ca --- /dev/null +++ b/test cases/windows/4 winmaincpp/meson.build @@ -0,0 +1,4 @@ +project('winmaincpp', 'cpp') + +exe = executable('prog', 'prog.cpp', gui_app : true) +test('winmaincpp', exe) diff --git a/test cases/windows/4 winmaincpp/prog.cpp b/test cases/windows/4 winmaincpp/prog.cpp new file mode 100644 index 0000000..6182257 --- /dev/null +++ b/test cases/windows/4 winmaincpp/prog.cpp @@ -0,0 +1,17 @@ +#include<windows.h> + +class Foo; + +int APIENTRY +WinMain( + HINSTANCE hInstance, + HINSTANCE hPrevInstance, + LPSTR lpszCmdLine, + int nCmdShow) { +// avoid unused argument error while matching template + ((void)hInstance); + ((void)hPrevInstance); + ((void)lpszCmdLine); + ((void)nCmdShow); + return 0; +} |