17 lines
621 B
Plaintext
17 lines
621 B
Plaintext
|
//---------------------------------------------------------------------------
|
||
|
// Version info.
|
||
|
//---------------------------------------------------------------------------
|
||
|
#include <winver.h>
|
||
|
|
||
|
#define VER_FILETYPE VFT_APP
|
||
|
#define VER_FILESUBTYPE VFT_UNKNOWN
|
||
|
#define VER_FILEDESCRIPTION_STR "Sample on how to create iis vdir"
|
||
|
#define VER_INTERNALNAME_STR "iisvdir"
|
||
|
#define VER_LEGALCOPYRIGHT_YEARS "2000"
|
||
|
#define VER_ORIGINALFILENAME_STR "iisvdir.EXE"
|
||
|
#define VER_FILEOS VOS_NT_WINDOWS32
|
||
|
|
||
|
#include <ntverp.h>
|
||
|
#include <common.ver>
|
||
|
|