mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[WINVER]: Remove wine'isms and add a resource file.
svn path=/trunk/; revision=63095
This commit is contained in:
parent
7c4ed8f966
commit
554ed501cb
3 changed files with 18 additions and 9 deletions
|
@ -1,6 +1,5 @@
|
|||
|
||||
|
||||
add_executable(winver winver.c)
|
||||
add_executable(winver winver.c winver.rc)
|
||||
set_module_type(winver win32gui UNICODE)
|
||||
add_importlibs(winver shell32 msvcrt kernel32)
|
||||
add_cd_file(TARGET winver DESTINATION reactos/system32 FOR all)
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Version Program
|
||||
* FILE: winver.c
|
||||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
|
@ -5,11 +11,10 @@
|
|||
|
||||
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow)
|
||||
{
|
||||
static const WCHAR szROS[] = { 'R','e','a','c','t','O','S',0 };
|
||||
UNREFERENCED_PARAMETER(lpCmdLine);
|
||||
UNREFERENCED_PARAMETER(nCmdShow);
|
||||
UNREFERENCED_PARAMETER(hPrevInstance);
|
||||
UNREFERENCED_PARAMETER(hInstance);
|
||||
ShellAboutW(0, szROS, 0, 0);
|
||||
return 1;
|
||||
UNREFERENCED_PARAMETER(hInstance);
|
||||
UNREFERENCED_PARAMETER(hPrevInstance);
|
||||
UNREFERENCED_PARAMETER(lpCmdLine);
|
||||
UNREFERENCED_PARAMETER(nCmdShow);
|
||||
|
||||
return ShellAboutW(NULL, L"ReactOS", NULL, NULL);
|
||||
}
|
||||
|
|
5
reactos/base/applications/winver/winver.rc
Normal file
5
reactos/base/applications/winver/winver.rc
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Version Program"
|
||||
#define REACTOS_STR_INTERNAL_NAME "winver"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "winver.exe"
|
||||
#include <reactos/version.rc>
|
Loading…
Reference in a new issue