From: Andrew Munger Date: Thu, 6 Oct 2005 20:07:24 +0000 (+0000) Subject: winver.exe by Christoph.AT.ApiViewer.de X-Git-Tag: ReactOS-0.2.8~122 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=d004682a006d6f389483924513cfa1863e7485c9;ds=sidebyside winver.exe by Christoph.AT.ApiViewer.de svn path=/trunk/; revision=18299 --- diff --git a/reactos/bootdata/packages/reactos.dff b/reactos/bootdata/packages/reactos.dff index 94960315e4b..7277a2a31da 100755 --- a/reactos/bootdata/packages/reactos.dff +++ b/reactos/bootdata/packages/reactos.dff @@ -186,6 +186,7 @@ subsys\system\userinit\userinit.exe 1 subsys\system\vmwinst\vmwinst.exe 1 subsys\system\winlogon\winlogon.exe 1 subsys\system\winefile\winefile.exe 1 +subsys\system\winver\winver.exe 1 subsys\system\dhcp\dhcp.exe 1 subsys\system\sm\sm.exe 1 subsys\system\expand\expand.exe 1 diff --git a/reactos/subsys/system/directory.xml b/reactos/subsys/system/directory.xml index 2c8c235708c..e231a125791 100644 --- a/reactos/subsys/system/directory.xml +++ b/reactos/subsys/system/directory.xml @@ -20,6 +20,9 @@ + + + @@ -80,8 +83,8 @@ - - + + diff --git a/reactos/subsys/system/winver/winver.c b/reactos/subsys/system/winver/winver.c new file mode 100644 index 00000000000..73e5c2e2ba4 --- /dev/null +++ b/reactos/subsys/system/winver/winver.c @@ -0,0 +1,8 @@ +#include +#include + +int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { + static const WCHAR szROS[] = { 'R','e','a','c','t','O','S','\n',0 }; + ShellAbout(0, szROS, 0, 0); + return 1; +} diff --git a/reactos/subsys/system/winver/winver.xml b/reactos/subsys/system/winver/winver.xml new file mode 100644 index 00000000000..6deef2f4af4 --- /dev/null +++ b/reactos/subsys/system/winver/winver.xml @@ -0,0 +1,9 @@ + + . + + + + 0x501 + 0x0501 + winver.c +