fixed some warnings (msvc /W4)
[reactos.git] / reactos / base / applications / winver / winver.c
index 73e5c2e..36e779b 100644 (file)
@@ -3,6 +3,10 @@
 \r
 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) {\r
   static const WCHAR szROS[] = { 'R','e','a','c','t','O','S','\n',0 };\r
+  UNREFERENCED_PARAMETER(lpCmdLine);\r
+  UNREFERENCED_PARAMETER(nCmdShow);\r
+  UNREFERENCED_PARAMETER(hPrevInstance);\r
+  UNREFERENCED_PARAMETER(hInstance);\r
   ShellAbout(0, szROS, 0, 0);\r
   return 1;\r
 }\r