28 lines
1012 B
Plaintext
28 lines
1012 B
Plaintext
#include "windows.h"
|
|
|
|
#define VER_FILEDESCRIPTION_STR "LKRhash scalable hashtables"
|
|
#define VER_INTERNALNAME_STR "LKRhash.sys"
|
|
#define VER_ORIGINALFILENAME_STR "LKRhash.sys"
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_PRODUCTVERSION_STR "1.8"
|
|
#define VER_PRODUCTVERSION 1,08,01,001
|
|
#define VER_COMPANYNAME_STR "Microsoft Corporation"
|
|
#define VER_PRODUCTNAME_STR "Microsoft(R) Windows (R) 2000 Operating System"
|
|
#define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
#define VER_FILEOS VOS_NT_WINDOWS32
|
|
#define VER_PRERELEASE 0
|
|
|
|
#if DBG
|
|
#define VER_DEBUG VS_FF_DEBUG
|
|
#else
|
|
#define VER_DEBUG 0
|
|
#endif
|
|
|
|
#define VER_PRIVATE 0
|
|
// #define VER_PRIVATE VS_FF_PRIVATEBUILD
|
|
|
|
#define VER_FILEFLAGS (VER_PRERELEASE|VER_DEBUG|VER_PRIVATE)
|
|
|
|
#include "common.ver"
|