23 lines
487 B
Plaintext
23 lines
487 B
Plaintext
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
//
|
|
// Visual C resources
|
|
//
|
|
|
|
//#include "visualc.rc"
|
|
|
|
|
|
//
|
|
// Version
|
|
//
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Windows NT File List Editor"
|
|
#define VER_INTERNALNAME_STR "FLIST.EXE"
|
|
#define VER_ORIGINALFILENAME_STR "FLIST.EXE"
|
|
#define VER_LEGALCOPYRIGHT_YEARS "1991-2000"
|
|
|
|
#include "common.ver"
|