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.
22 lines
534 B
22 lines
534 B
//
|
|
// Include GPD parser string resources here
|
|
//
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
#ifdef WINNT_40
|
|
#define VER_FILEVERSION 0, 2, 0, 0
|
|
#else // !WINNT_40
|
|
#define VER_FILEVERSION 0, 3, 0, 0
|
|
#endif // !WINNT_40
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "GPD Parser"
|
|
|
|
#define VER_INTERNALNAME_STR "gpdparse.dll"
|
|
#define VER_ORIGINALFILENAME_STR "gpdparse.dll"
|
|
|
|
#include <common.ver>
|