2014-05-01 17:49:23 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS Version Program
|
2015-09-09 13:13:35 +00:00
|
|
|
* FILE: base/applications/winver/winver.c
|
2014-05-01 17:49:23 +00:00
|
|
|
*/
|
|
|
|
|
2013-01-24 23:00:42 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
2019-03-19 20:23:32 +00:00
|
|
|
#include <winuser.h>
|
|
|
|
#include <commctrl.h>
|
2013-01-24 23:00:42 +00:00
|
|
|
#include <shellapi.h>
|
2009-04-10 19:03:02 +00:00
|
|
|
|
2014-01-19 08:30:17 +00:00
|
|
|
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow)
|
|
|
|
{
|
2019-03-19 20:23:32 +00:00
|
|
|
INITCOMMONCONTROLSEX iccx;
|
|
|
|
|
2014-05-01 17:49:23 +00:00
|
|
|
UNREFERENCED_PARAMETER(hInstance);
|
|
|
|
UNREFERENCED_PARAMETER(hPrevInstance);
|
|
|
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
|
|
|
UNREFERENCED_PARAMETER(nCmdShow);
|
|
|
|
|
2019-03-19 20:23:32 +00:00
|
|
|
/* Initialize common controls */
|
|
|
|
iccx.dwSize = sizeof(INITCOMMONCONTROLSEX);
|
|
|
|
iccx.dwICC = ICC_STANDARD_CLASSES | ICC_WIN95_CLASSES;
|
|
|
|
InitCommonControlsEx(&iccx);
|
|
|
|
|
2014-05-01 17:49:23 +00:00
|
|
|
return ShellAboutW(NULL, L"ReactOS", NULL, NULL);
|
2009-04-10 19:03:02 +00:00
|
|
|
}
|