15 lines
554 B
Plaintext
15 lines
554 B
Plaintext
//---------------------------------------------------------------------------
|
|
// Version info.
|
|
//---------------------------------------------------------------------------
|
|
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT_UNKNOWN
|
|
// BUGBUG (reinerf) someone should put in a description of this file
|
|
#define VER_FILEDESCRIPTION_STR ""
|
|
#define VER_INTERNALNAME_STR "WMI_CSE"
|
|
#define VER_ORIGINALFILENAME_STR "WMI_CSE.DLL"
|
|
|
|
#include <common.ver>
|