blob: 8e428c6c2dbcd63e89c67e1ab5c42d8d0aadc87d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _OPTIONS_INC
#define _OPTIONS_INC
typedef struct {
int vk;
bool mod_shift, mod_alt, mod_ctrl;
bool hide_if_visible;
bool make_topmost;
} Options;
extern Options options;
void InitOptions();
#endif
|