29 lines
478 B
Plaintext
29 lines
478 B
Plaintext
|
//lint -e*
|
||
|
|
||
|
//
|
||
|
// Headers
|
||
|
//
|
||
|
|
||
|
#include "baseinc.h"
|
||
|
#include "ntverp.h"
|
||
|
|
||
|
//
|
||
|
// Version
|
||
|
//
|
||
|
|
||
|
#define VER_FILETYPE VFT_DLL
|
||
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
||
|
#define VER_FILEDESCRIPTION_STR "v1 Script Module"
|
||
|
#define VER_INTERNALNAME_STR "script"
|
||
|
#define VER_ORIGINALFILENAME_STR "SCRIPT.DLL"
|
||
|
#define VER_LEGALCOPYRIGHT_YEARS "1991-2000"
|
||
|
|
||
|
#include "common.ver"
|
||
|
|
||
|
//
|
||
|
// Message resources
|
||
|
//
|
||
|
|
||
|
#include "logmsg.rc"
|
||
|
|