18 lines
357 B
Plaintext
18 lines
357 B
Plaintext
#include <windows.h>
|
|
|
|
#include <visualc.rc>
|
|
|
|
//
|
|
// Version
|
|
//
|
|
|
|
#include <ntverp.h>
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Test Migration DLL"
|
|
#define VER_INTERNALNAME_STR "MIGRATE.DLL"
|
|
#define VER_ORIGINALFILENAME_STR "MIGRATE.DLL"
|
|
#include <common.ver>
|
|
|
|
|