forked from gurnec/HashCheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.h
53 lines (44 loc) · 1.71 KB
/
version.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* HashCheck Shell Extension
* Original work copyright (C) Kai Liu. All rights reserved.
* Modified work copyright (C) 2014 Christopher Gurnee. All rights reserved.
*
* Please refer to readme.txt for information about this source code.
* Please refer to license.txt for details about distribution and modification.
**/
// Full name; this will appear in the version info and control panel
#define HASHCHECK_NAME_STR "HashCheck Shell Extension"
// Full version: MUST be in the form of major,minor,revision,build
#define HASHCHECK_VERSION_FULL 2,2,3,6
// String version: May be any suitable string
#define HASHCHECK_VERSION_STR "2.2.3.6"
#ifdef _USRDLL
// PE version: MUST be in the form of major.minor
#pragma comment(linker, "/version:2.2")
#endif
// String used in the "CompanyName" field of the version resource
#define HASHCHECK_AUTHOR_STR "code.kliu.org"
// Tail portion of the copyright string for the version resource
#define HASHCHECK_COPYRIGHT_STR "Kai Liu and Christopher Gurnee. All rights reserved."
// Name of the DLL
#define HASHCHECK_FILENAME_STR "HashCheck.dll"
// String used for setup
#define HASHCHECK_SETUP_STR "HashCheck Shell Extension Setup"
// Architecture names
#if defined(_M_IX86)
#define ARCH_NAME_TAIL " (x86-32)"
#define ARCH_NAME_FULL "x86-32"
#define ARCH_NAME_PART "x86"
#elif defined(_M_AMD64) || defined(_M_X64)
#define ARCH_NAME_TAIL " (x86-64)"
#define ARCH_NAME_FULL "x86-64"
#define ARCH_NAME_PART "x64"
#elif defined(_M_IA64)
#define ARCH_NAME_TAIL " (IA-64)"
#define ARCH_NAME_FULL "IA-64"
#define ARCH_NAME_PART ARCH_NAME_FULL
#else
#define ARCH_NAME_TAIL ""
#define ARCH_NAME_FULL "Unspecified"
#define ARCH_NAME_PART ARCH_NAME_FULL
#endif