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.
27 lines
789 B
27 lines
789 B
#include <windows.h>
|
|
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Sidewinder PID PreFilter\0"
|
|
#define VER_INTERNALNAME_STR "SWPIDFlt\0"
|
|
#define VER_ORIGINALFILENAME_STR "SWPIDFlt.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"
|