mirror of
https://github.com/vale981/bspwm
synced 2025-03-05 18:01:37 -05:00
21 lines
569 B
C
21 lines
569 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*);
|
|
bool parse_bool(char *, bool *);
|
|
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 *);
|
|
bool parse_corner(char *, corner_t *);
|
|
bool parse_rotate(char *, rotate_t *);
|
|
bool parse_fence_move(char *, fence_move_t *);
|
|
|
|
#endif
|