bspwm/messages.h

20 lines
435 B
C
Raw Normal View History

2012-07-31 14:32:13 +02:00
#ifndef _MESSAGES_H
#define _MESSAGES_H
#include <lua.h>
#include <lualib.h>
#include <lauxlib.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*);
void split_ratio_cmd(char *);
bool is_bool(char *);
bool parse_bool(char *);
2012-09-11 16:58:06 +02:00
bool parse_layout(char *, layout_t *);
bool parse_direction(char *, direction_t *);
bool parse_fence_move(char *, fence_move_t *);
2012-07-31 14:32:13 +02:00
#endif