1 #include<windows.h>
2 
3 int APIENTRY
4 WinMain(
5     HINSTANCE hInstance,
6     HINSTANCE hPrevInstance,
7     LPSTR lpszCmdLine,
8     int nCmdShow) {
9 // avoid unused argument error while matching template
10     ((void)hInstance);
11     ((void)hPrevInstance);
12     ((void)lpszCmdLine);
13     ((void)nCmdShow);
14     return 0;
15 }
16