blob: 9cdf17023ca5e3f60593f32bc13a0cfa01d70c03 [file] [log] [blame]
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow) {
// avoid unused argument error while matching template
((void)hInstance);
((void)hPrevInstance);
((void)lpCmdLine);
((void)nCmdShow);
return 0;
}