- this module should only live in rosapps
[reactos.git] / reactos / base / applications / winver / winver.c
diff --git a/reactos/base/applications/winver/winver.c b/reactos/base/applications/winver/winver.c
deleted file mode 100644 (file)
index b985554..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <windows.h>
-#include <tchar.h>
-
-int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) {
-  static const WCHAR szROS[] = { 'R','e','a','c','t','O','S','\n',0 };
-  UNREFERENCED_PARAMETER(lpCmdLine);
-  UNREFERENCED_PARAMETER(nCmdShow);
-  UNREFERENCED_PARAMETER(hPrevInstance);
-  UNREFERENCED_PARAMETER(hInstance);
-  ShellAbout(0, szROS, 0, 0);
-  return 1;
-}