3514b26514c15106d733926abefa6396e4e908f7
[reactos.git] / rosapps / applications / winver / winver.c
1 #include <windows.h>
2 #include <tchar.h>
3
4 int WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow) {
5 static const WCHAR szROS[] = { 'R','e','a','c','t','O','S',0 };
6 UNREFERENCED_PARAMETER(lpCmdLine);
7 UNREFERENCED_PARAMETER(nCmdShow);
8 UNREFERENCED_PARAMETER(hPrevInstance);
9 UNREFERENCED_PARAMETER(hInstance);
10 ShellAbout(0, szROS, 0, 0);
11 return 1;
12 }