mirror of
https://github.com/vale981/bspwm
synced 2025-03-06 02:01:42 -05:00
19 lines
419 B
C
19 lines
419 B
C
#ifndef _MESSAGES_H
|
|
#define _MESSAGES_H
|
|
|
|
#include <lua.h>
|
|
#include <lualib.h>
|
|
#include <lauxlib.h>
|
|
#include "types.h"
|
|
|
|
void process_message(char*, char*);
|
|
void get_setting(char*, char*);
|
|
void set_setting(char*, char*);
|
|
void split_ratio_cmd(char *);
|
|
bool is_bool(char *);
|
|
bool parse_bool(char *);
|
|
bool parse_layout(char *, layout_t *);
|
|
direction_t parse_direction(char *);
|
|
fence_move_t parse_fence_move(char *);
|
|
|
|
#endif
|