15 lines
352 B
Plaintext
15 lines
352 B
Plaintext
|
#include <windows.h>
|
||
|
|
||
|
//
|
||
|
// Version resources
|
||
|
//
|
||
|
#include <ntverp.h>
|
||
|
#define VER_FILETYPE VFT_DLL
|
||
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
||
|
#define VER_FILEDESCRIPTION_STR "Microsoft OLE for Windows"
|
||
|
#define VER_INTERNALNAME_STR "OLETHK32.DLL"
|
||
|
#define VER_ORIGINALFILENAME_STR "OLETHK32.DLL"
|
||
|
#include <common.ver>
|
||
|
|
||
|
|