-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathversion.rc
More file actions
18 lines (15 loc) · 765 Bytes
/
version.rc
File metadata and controls
18 lines (15 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <windows.h>
#include <ntverp.h>
#include "version.h"
#define STRINGLIZE(x) #x
#define STRINGLIZE2(x) STRINGLIZE(x)
#define PROJECT_VERSION_STR STRINGLIZE2(PROJ_VER_MAJOR.PROJ_VER_YEAR.PROJ_VER_MONTH.PROJ_VER_DAY)
#define PROJECT_STR STRINGLIZE2(PROJ)
#define VER_FILETYPE VFT_APP
#define VER_FILESUBTYPE VFT2_UNKNOWN
#define VER_FILEDESCRIPTION_STR "Extract files out of .msi package"
#define VER_INTERNALNAME_STR PROJECT_STR ".exe"
#define VER_FILEVERSION_STR PROJECT_VERSION_STR
#define VER_FILEVERSION PROJ_VER_MAJOR,PROJ_VER_YEAR,PROJ_VER_MONTH,PROJ_VER_DAY
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2002-2017 Wei Mao"
#include <common.ver>