ReactOS 0.4.15-dev-7953-g1f49173
winver.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Version Program
4 * FILE: base/applications/winver/winver.c
5 */
6
7#include <stdarg.h>
8#include <windef.h>
9#include <winbase.h>
10#include <winuser.h>
11#include <commctrl.h>
12#include <shellapi.h>
13
14int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow)
15{
17
19 UNREFERENCED_PARAMETER(hPrevInstance);
20 UNREFERENCED_PARAMETER(lpCmdLine);
21 UNREFERENCED_PARAMETER(nCmdShow);
22
23 /* Initialize common controls */
24 iccx.dwSize = sizeof(INITCOMMONCONTROLSEX);
27
28 return ShellAboutW(NULL, L"ReactOS", NULL, NULL);
29}
HINSTANCE hInstance
Definition: charmap.c:19
BOOL WINAPI InitCommonControlsEx(const INITCOMMONCONTROLSEX *lpInitCtrls)
Definition: commctrl.c:893
#define NULL
Definition: types.h:112
#define UNREFERENCED_PARAMETER(P)
Definition: ntbasedef.h:317
#define L(x)
Definition: ntvdm.h:50
struct tagINITCOMMONCONTROLSEX INITCOMMONCONTROLSEX
#define ICC_STANDARD_CLASSES
Definition: commctrl.h:73
#define ICC_WIN95_CLASSES
Definition: commctrl.h:66
BOOL WINAPI ShellAboutW(HWND hWnd, LPCWSTR szApp, LPCWSTR szOtherStuff, HICON hIcon)
#define WINAPI
Definition: msvc.h:6
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow)
Definition: winver.c:14
WCHAR * LPWSTR
Definition: xmlstorage.h:184