blob: f4534c8f8ae1ac322191eb59274f4ab9d71e0af9 (
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
|
#ifndef _OPTIONS_INC
#define _OPTIONS_INC
#define CONTACT_DEFAULT_POLICY 0xFFFF
typedef enum {ED_POP, ED_BAL, ED_MB} ErrorDisplay;
typedef struct {
OtrlPolicy default_policy;
ErrorDisplay err_method;
bool prefix_messages;
bool msg_inline;
char prefix[64];
bool delete_history;
bool timeout_finished;
} Options;
extern Options options;
int OptInit(WPARAM wParam, LPARAM lParam);
void LoadOptions();
#endif
|