17 lines
612 B
Plaintext
17 lines
612 B
Plaintext
//---------------------------------------------------------------------------
|
|
// Version info.
|
|
//---------------------------------------------------------------------------
|
|
#include <winver.h>
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "IIS INF Build Utility"
|
|
#define VER_INTERNALNAME_STR "INFUTIL2"
|
|
#define VER_LEGALCOPYRIGHT_YEARS "2000"
|
|
#define VER_ORIGINALFILENAME_STR "INFUTIL2.EXE"
|
|
#define VER_FILEOS VOS_NT_WINDOWS32
|
|
|
|
#include <ntverp.h>
|
|
#include <common.ver>
|
|
|