]> git.lizzy.rs Git - bspwm.git/blob - messages.h
Remove message: 'magnetise'
[bspwm.git] / messages.h
1 #ifndef _MESSAGES_H
2 #define _MESSAGES_H
3
4 #include "types.h"
5
6 void process_message(char*, char*);
7 void get_setting(char*, char*);
8 void set_setting(char*, char*, char*);
9 bool parse_bool(char *, bool *);
10 bool parse_layout(char *, layout_t *);
11 bool parse_direction(char *, direction_t *);
12 bool parse_nearest_argument(char *, nearest_arg_t *);
13 bool parse_cycle_direction(char *, cycle_dir_t *);
14 bool parse_circulate_direction(char *, circulate_dir_t *);
15 bool parse_list_option(char *, list_option_t *);
16 bool parse_skip_client(char *, skip_client_t *);
17 bool parse_skip_desktop(char *, skip_desktop_t *);
18 bool parse_rotate(char *, rotate_t *);
19 bool parse_fence_move(char *, fence_move_t *);
20 bool parse_modifier_mask(char *, unsigned int *);
21 void print_modifier_mask(char *, unsigned int);
22
23 #endif