30 lines
830 B
Plaintext
30 lines
830 B
Plaintext
|
|
#include <windows.h>
|
|
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_DRV
|
|
#define VER_FILESUBTYPE VFT2_DRV_INSTALLABLE
|
|
#define VER_FILEDESCRIPTION_STR "SideWinder Force Feedback 2 software update\0"
|
|
#define VER_INTERNALNAME_STR "SWFF2QFE1\0"
|
|
#define VER_ORIGINALFILENAME_STR "SWUsbFlt.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 "SideWinder Force Feedback 2 software update\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"
|
|
|