mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 06:53:00 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
5
base/applications/winver/CMakeLists.txt
Normal file
5
base/applications/winver/CMakeLists.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
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)
|
20
base/applications/winver/winver.c
Normal file
20
base/applications/winver/winver.c
Normal file
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Version Program
|
||||
* FILE: base/applications/winver/winver.c
|
||||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <shellapi.h>
|
||||
|
||||
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow)
|
||||
{
|
||||
UNREFERENCED_PARAMETER(hInstance);
|
||||
UNREFERENCED_PARAMETER(hPrevInstance);
|
||||
UNREFERENCED_PARAMETER(lpCmdLine);
|
||||
UNREFERENCED_PARAMETER(nCmdShow);
|
||||
|
||||
return ShellAboutW(NULL, L"ReactOS", NULL, NULL);
|
||||
}
|
5
base/applications/winver/winver.rc
Normal file
5
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…
Add table
Add a link
Reference in a new issue