mirror of
https://github.com/vale981/bspwm
synced 2025-03-06 10:11:43 -05:00
12 lines
191 B
C
12 lines
191 B
C
#ifndef _MESSAGES_H
|
|
#define _MESSAGES_H
|
|
|
|
#include <lua.h>
|
|
#include <lualib.h>
|
|
#include <lauxlib.h>
|
|
|
|
void handle_call(lua_State*);
|
|
void process_message(char*, char*);
|
|
void quit(void);
|
|
|
|
#endif
|