blob: 5449b48216df70f48a10d369ec64ad00ed3b5105 (
plain)
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
|
#ifndef _OPTIONS_INC
#define _OPTIONS_INC
#define NOTIFY_NONE 0
#define NOTIFY_CLOSED 1
#define NOTIFY_NFORE 2
#define NOTIFY_ALWAYS 3
/*
#define ID_STATUS_ONLINE 40072
#define ID_STATUS_AWAY 40073
#define ID_STATUS_DND 40074
#define ID_STATUS_NA 40075
#define ID_STATUS_OCCUPIED 40076
#define ID_STATUS_FREECHAT 40077
#define ID_STATUS_INVISIBLE 40078
#define ID_STATUS_ONTHEPHONE 40079
#define ID_STATUS_OUTTOLUNCH 40080
*/
typedef struct Options_tag {
int notify_when;
int timeout;
bool set_colours;
COLORREF bkCol;
COLORREF textCol;
bool consider_tabs;
bool close_win;
bool disable_status[9];
bool show_msg;
} Options;
extern Options options;
int OptInit(WPARAM wParam, LPARAM lParam);
void LoadOptions();
void SaveOptions();
#endif
|