diff options
Diffstat (limited to 'meson/test cases/windows/4 winmaincpp')
-rw-r--r-- | meson/test cases/windows/4 winmaincpp/meson.build | 4 | ||||
-rw-r--r-- | meson/test cases/windows/4 winmaincpp/prog.cpp | 17 |
2 files changed, 21 insertions, 0 deletions
diff --git a/meson/test cases/windows/4 winmaincpp/meson.build b/meson/test cases/windows/4 winmaincpp/meson.build new file mode 100644 index 000000000..4eda8ca01 --- /dev/null +++ b/meson/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/meson/test cases/windows/4 winmaincpp/prog.cpp b/meson/test cases/windows/4 winmaincpp/prog.cpp new file mode 100644 index 000000000..618225771 --- /dev/null +++ b/meson/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; +} |