2015-08-06 07:30:40 +10:00
|
|
|
#ifndef _SWAY_COMMANDS_H
|
|
|
|
#define _SWAY_COMMANDS_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
struct cmd_handler {
|
2015-08-11 05:09:51 +10:00
|
|
|
char *command;
|
|
|
|
int (*handle)(struct sway_config *config, int argc, char **argv);
|
2015-08-06 07:30:40 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
int handle_command(struct sway_config *config, char *command);
|
|
|
|
|
|
|
|
#endif
|