blob: d5c7dba2180cd7252851774146d01d482778a0a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _OPTIONS_INC
#define _OPTIONS_INC
typedef struct {
bool bbcodes;
bool html;
} Options;
extern Options options;
void InitOptions();
void DeinitOptions();
#endif
|