summaryrefslogtreecommitdiff
path: root/random_message_changer/options.h
blob: 9fe6a0a62b06b23ee923c7136d1e325f85eff87e (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
#ifndef _OPTIONS_INC
#define _OPTIONS_INC

typedef struct {
	int iTimeOut;
	bool cStatus;
	bool cTime;
	bool cAway;
	bool cNa;
	bool cOcc;
	bool cDnd;
	bool cFfc;

	char file_away[STRING_LENGTH];
	char file_na[STRING_LENGTH];
	char file_occ[STRING_LENGTH];
	char file_dnd[STRING_LENGTH];
	char file_ffc[STRING_LENGTH];
} Options;

extern Options options;

void LoadOptions();
void SaveOptions();

#endif