-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathresource.h
32 lines (24 loc) · 811 Bytes
/
resource.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
#ifndef RESOURCE_H
#define RESOURCE_H
#define STR_HELPER(x) #x
#define STR(x) STR_HELPER(x)
/* VERSION DEFINITIONS */
#define VER_MAJOR 1
#define VER_MINOR 4
#define VER_RELEASE 10
#define VER_BUILD 1
#define VER_STRING STR(VER_MAJOR) "." STR(VER_MINOR) "." STR(VER_RELEASE) "." STR(VER_BUILD)
#define FILE_DESCRIPTION "Notepad++ Plugin for Git SCM."
#define INTERNAL_NAME "Notepad++ Git SCM"
#define COMPANY_NAME "Vin's World"
#define FILE_VERSION VER_STRING
#define LEGAL_COPYRIGHT "Copyright (C) VinsWorld. All Rights Reserved."
#define LEGAL_TRADEMARKS ""
#define ORIGINAL_FILENAME "GitSCM"
#define PRODUCT_NAME "GITSCM"
#define PRODUCT_VERSION VER_STRING
/* ADDITIONAL DEFINITIONS */
#define DOCKABLE_INDEX 4
#define TORTOISE_INDEX 19
#define IDB_TB_GIT 1001
#endif