Mark WinMain parameters as unused

This commit is contained in:
jp9000 2014-06-25 02:05:17 -07:00
parent 2e6063ce79
commit 3c2d81033f

View File

@ -202,5 +202,8 @@ int WINAPI WinMain(HINSTANCE instance, HINSTANCE prevInstance, LPSTR cmdLine,
blog(LOG_INFO, "Number of memory leaks: %llu", bnum_allocs());
DestroyWindow(hwnd);
UNUSED_PARAMETER(prevInstance);
UNUSED_PARAMETER(cmdLine);
UNUSED_PARAMETER(numCmd);
return 0;
}