]> git.lizzy.rs Git - bspwm.git/blob - messages.h
Don't resize: send a configure notify event
[bspwm.git] / messages.h
1 #ifndef _MESSAGES_H
2 #define _MESSAGES_H
3
4 #include <lua.h>
5 #include <lualib.h>
6 #include <lauxlib.h>
7 #include "types.h"
8
9 void process_message(char*, char*);
10 void get_setting(char*, char*);
11 void set_setting(char*, char*);
12 bool parse_bool(char *, bool *);
13 bool parse_layout(char *, layout_t *);
14 bool parse_direction(char *, direction_t *);
15 bool parse_cycle_direction(char *, cycle_dir_t *);
16 bool parse_skip_client(char *, skip_client_t *);
17 bool parse_rotate(char *s, rotate_t *);
18 bool parse_fence_move(char *, fence_move_t *);
19
20 #endif