You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
814 B
28 lines
814 B
|
|
#include <windows.h>
|
|
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_DRV
|
|
#define VER_FILESUBTYPE VFT2_DRV_INSTALLABLE
|
|
#define VER_FILEDESCRIPTION_STR "SideWinder Virtual Device HID Mini-Driver\0"
|
|
#define VER_INTERNALNAME_STR "HidSwvd\0"
|
|
#define VER_ORIGINALFILENAME_STR "HidSwvd.sys\0"
|
|
#define VER_LEGALCOPYRIGHT_STR "Copyright © 1995-2001 Microsoft Corporation\0"
|
|
|
|
#ifdef VER_PRODUCTNAME_STR
|
|
#undef VER_PRODUCTNAME_STR
|
|
#endif
|
|
#define VER_PRODUCTNAME_STR "Microsoft Game Controller Software\0"
|
|
|
|
#ifdef VER_PRODUCTVERSION
|
|
#undef VER_PRODUCTVERSION
|
|
#endif
|
|
#define VER_PRODUCTVERSION 4,5,VER_PRODUCTBUILD,VER_PRODUCTBUILD_QFE
|
|
|
|
#ifdef VER_PRODUCTVERSION_STR
|
|
#undef VER_PRODUCTVERSION_STR
|
|
#endif
|
|
#define VER_PRODUCTVERSION_STR "4.5"
|
|
|
|
#include "common.ver"
|