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