15 lines
396 B
Plaintext
15 lines
396 B
Plaintext
|
#include <windows.h>
|
||
|
#include <ntverp.h>
|
||
|
|
||
|
#define FILEDESCRIPTION "Patch Application Tool"
|
||
|
#define FILENAME "apatch.exe"
|
||
|
|
||
|
#define VER_FILETYPE VFT_APP
|
||
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
||
|
#define VER_FILEDESCRIPTION_STR FILEDESCRIPTION
|
||
|
|
||
|
#define VER_INTERNALNAME_STR FILENAME
|
||
|
#define VER_ORIGINALFILENAME_STR FILENAME
|
||
|
|
||
|
#include <common.ver>
|