reactos/rosapps/winver/winver.c

13 lines
405 B
C

#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;
}