bspwm/messages.h

19 lines
518 B
C
Raw Normal View History

2012-07-31 14:32:13 +02:00
#ifndef _MESSAGES_H
#define _MESSAGES_H
2012-09-11 16:29:43 +02:00
#include "types.h"
2012-07-31 14:32:13 +02:00
2012-08-02 21:53:27 +02:00
void process_message(char*, char*);
2012-08-29 12:45:44 +02:00
void get_setting(char*, char*);
void set_setting(char*, char*, char*);
bool parse_bool(char *, bool *);
2012-09-11 16:58:06 +02:00
bool parse_layout(char *, layout_t *);
bool parse_direction(char *, direction_t *);
bool parse_cycle_direction(char *, cycle_dir_t *);
bool parse_skip_client(char *, skip_client_t *);
2012-09-26 12:11:45 +02:00
bool parse_corner(char *, corner_t *);
bool parse_rotate(char *, rotate_t *);
bool parse_fence_move(char *, fence_move_t *);
2012-07-31 14:32:13 +02:00
#endif