19 lines
420 B
Plaintext
19 lines
420 B
Plaintext
|
#include <windows.h>
|
||
|
#include <ntverp.h>
|
||
|
|
||
|
//
|
||
|
// version resources
|
||
|
//
|
||
|
#define VER_FILETYPE VFT_APP
|
||
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
||
|
#define VER_FILEDESCRIPTION_STR "Windows NT Setup Executable"
|
||
|
#define VER_INTERNALNAME_STR "SETUP.EXE"
|
||
|
#define VER_ORIGINALFILENAME_STR "SETUP.EXE"
|
||
|
#include "common.ver"
|
||
|
|
||
|
//
|
||
|
// Want setup icon in the .exe for compatibility
|
||
|
//
|
||
|
0 ICON setup.ico
|
||
|
|