Author: hbelusca Date: Tue Jun 20 16:44:40 2017 New Revision: 75151
URL: http://svn.reactos.org/svn/reactos?rev=75151&view=rev Log: [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
Added: trunk/reactos/subsystems/mvdm/wow16/user/user.rc (with props) Modified: trunk/reactos/subsystems/mvdm/wow16/user/CMakeLists.txt
Modified: trunk/reactos/subsystems/mvdm/wow16/user/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/mvdm/wow16/user/... ============================================================================== --- trunk/reactos/subsystems/mvdm/wow16/user/CMakeLists.txt [iso-8859-1] (original) +++ trunk/reactos/subsystems/mvdm/wow16/user/CMakeLists.txt [iso-8859-1] Tue Jun 20 16:44:40 2017 @@ -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)
Added: trunk/reactos/subsystems/mvdm/wow16/user/user.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/mvdm/wow16/user/... ============================================================================== --- trunk/reactos/subsystems/mvdm/wow16/user/user.rc (added) +++ trunk/reactos/subsystems/mvdm/wow16/user/user.rc [iso-8859-1] Tue Jun 20 16:44:40 2017 @@ -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>
Propchange: trunk/reactos/subsystems/mvdm/wow16/user/user.rc ------------------------------------------------------------------------------ svn:eol-style = native