diff options
Diffstat (limited to 'meson/test cases/windows/4 winmaincpp/prog.cpp')
-rw-r--r-- | meson/test cases/windows/4 winmaincpp/prog.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
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; +} |