-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.hpp
More file actions
52 lines (44 loc) · 1.68 KB
/
constants.hpp
File metadata and controls
52 lines (44 loc) · 1.68 KB
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
#ifndef CONSTANTS_H
#define CONSTANTS_H
#define IDB_DOWNLOAD 1400
#define IDB_CREATE 1401
#define IDB_OPEN 1402
#define IDB_EXIT 1403
#define IDB_DELETE 1404
#define ID_LISTBOX 1500
#define IDC_SID 1600
#define IDC_LASTCHANGED 1601
#define IDC_NOTEID 1602
#define IDC_NOTELASTMOD 1603
#define IDC_STATUS 1604
#define IDC_GRAYBOX 1605
#define IDB_EDIT_ADDUP 2400
#define IDB_EDIT_PROPERTIES 2401
#define IDB_EDIT_CLOSE 2402
#define IDE_EDIT_SUBJECT 2500
#define IDE_EDIT_ENTRY 2501
#define IDC_EDIT_SUBJECT 2600
#define IDC_EDIT_ENTRY 2601
#define IDC_EDIT_GRAYBOX 2602
#define IDC_EDIT_STATUS 2603
#define MATCH_VERSION "1.0"
#define INI_FILE "config.ini"
#define NOTER_MAINWINDOW "SimpleNoterMain"
#define NOTER_EDITWINDOW "SimpleNoterEdit"
#define GET_METHOD "GET"
#define POST_METHOD "POST"
#define BZ_COMPRESSED_HEADER "X-BZ-Compressed"
#define TRUE_ANSWER "yes"
#define LIST_ACTION "list"
#define RETRIEVE_ACTION "retrieve"
#define INFO_ACTION "info"
#define LOCK_ACTION "lock"
#define UNLOCK_ACTION "unlock"
#define DELETE_ACTION "delete"
#define ADD_ACTION "add"
#define UPDATE_ACTION "update"
#define REGISTER_ACTION "register"
#define CHANGE_ACTION "change"
#define REMOVE_ACTION "remove"
#define ERROR_PROGRAM_FAILURE -2048
#endif