forked from bo3b/3Dmigoto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.h
56 lines (45 loc) · 1.82 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
54
55
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by DirectX9.rc
// Used by DirectX11.rc
// Used by NVAPI.rc
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 101
#define _APS_NEXT_COMMAND_VALUE 40001
#define _APS_NEXT_CONTROL_VALUE 1001
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif
// Used for embedded font resource for overlay
#define SPRITEFONT 256
#define IDR_COURIERBOLD 101
#define IDR_COURIERSMALL 102
#define IDR_ARIAL 103
// Actual version, name, copyright information that is built into the dlls.
// This is what an end-user will see when they look at dll properties.
// The VERSION_MAJOR and VERSION_MINOR are hand edited when versions are to change.
// The VERSION_REVISION is automatically incremented for every Publish build.
#define VERSION_MAJOR 1
#define VERSION_MINOR 3
#define VERSION_REVISION 16
#define STRINGIZE2(s) #s
#define STRINGIZE(s) STRINGIZE2(s)
#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION
#define VER_FILE_VERSION_STR STRINGIZE(VERSION_MAJOR) \
"." STRINGIZE(VERSION_MINOR) \
"." STRINGIZE(VERSION_REVISION) \
#define VER_PRODUCTNAME_STR "3Dmigoto"
#define VER_PRODUCT_VERSION VER_FILE_VERSION
#define VER_PRODUCT_VERSION_STR VER_FILE_VERSION_STR
#define VER_COPYRIGHT_STR "Copyright (C) 2014-2019"
#ifdef _DEBUG
#define VER_VER_DEBUG VS_FF_DEBUG
#else
#define VER_VER_DEBUG 0
#endif
#define VER_FILEOS VOS_NT_WINDOWS32
#define VER_FILEFLAGS VER_VER_DEBUG
#define VER_FILETYPE VFT_APP