[SWENUM] Add version information. CORE-14112

Improves setup of DirectX 9.0b 4.09.00.0902 (which the game Halo wants
to install) after manually lowering DirectX version in registry.
This commit is contained in:
Jason Wendt 2017-12-14 12:48:48 -07:00 committed by Hermès BÉLUSCA - MAÏTO
parent 10910ca9e1
commit 0fdb5d9b63
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,5 @@
add_library(swenum SHARED swenum.c)
add_library(swenum SHARED swenum.c swenum.rc)
set_module_type(swenum kernelmodedriver)
add_importlibs(swenum ks ntoskrnl hal)
add_cd_file(TARGET swenum DESTINATION reactos/system32/drivers NO_CAB FOR all)

View file

@ -0,0 +1,5 @@
#define REACTOS_VERSION_DLL
#define REACTOS_STR_FILE_DESCRIPTION "Plug and Play Software Device Enumerator"
#define REACTOS_STR_INTERNAL_NAME "swenum"
#define REACTOS_STR_ORIGINAL_FILENAME "swenum.sys"
#include <reactos/version.rc>