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