[USER.EXE]: Addendum to r75126: add a (dummy) version resource to USER.EXE so as to fix error 1812 "ERROR_RESOURCE_DATA_NOT_FOUND" encountered when starting the DirectX 9.0 installer. From patch by Stas'M, thanks!

CORE-13462

svn path=/trunk/; revision=75151
This commit is contained in:
Hermès Bélusca-Maïto 2017-06-20 16:44:40 +00:00
parent e7e6f2ec5f
commit 03a1f14142
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,5 @@
add_executable(user user.c)
add_executable(user user.c user.rc)
set_module_type(user win32gui ENTRYPOINT mainCRTStartup)
add_importlibs(user msvcrt kernel32)
add_cd_file(TARGET user DESTINATION reactos/system32 FOR all)

View file

@ -0,0 +1,5 @@
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS WOW16 User-interface stub"
#define REACTOS_STR_INTERNAL_NAME "USER"
#define REACTOS_STR_ORIGINAL_FILENAME "USER.EXE"
#include <reactos/version.rc>