mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
13 lines
405 B
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;
|
||
|
}
|