]> git.lizzy.rs Git - bspwm.git/blobdiff - messages.h
New 'grab_pointer' argument: 'resize_side'
[bspwm.git] / messages.h
index 90f0739c86ef56fff55f8b1a01ddd58097702f95..8f7d5d6d7296c32e161526e7a0656c6c4156f9c0 100644 (file)
@@ -3,6 +3,8 @@
 
 #include "types.h"
 
+#define TOK_SEP  " "
+
 void process_message(char*, char*);
 void get_setting(char*, char*);
 void set_setting(char*, char*, char*);
@@ -13,11 +15,12 @@ bool parse_nearest_argument(char *, nearest_arg_t *);
 bool parse_cycle_direction(char *, cycle_dir_t *);
 bool parse_circulate_direction(char *, circulate_dir_t *);
 bool parse_list_option(char *, list_option_t *);
+bool parse_send_option(char *, send_option_t *);
 bool parse_skip_client(char *, skip_client_t *);
 bool parse_skip_desktop(char *, skip_desktop_t *);
 bool parse_rotate(char *, rotate_t *);
+bool parse_flip(char *, flip_t *);
 bool parse_fence_move(char *, fence_move_t *);
-bool parse_modifier_mask(char *, unsigned int *);
-void print_modifier_mask(char *, unsigned int);
+bool parse_pointer_action(char *, pointer_action_t *);
 
 #endif