mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
1e3d5d70e9
svn path=/trunk/; revision=26033
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;
|
|
}
|