mirror of
https://github.com/NickHu/sway
synced 2025-01-04 23:01:31 +01:00
13 lines
271 B
C
13 lines
271 B
C
#ifndef _SWAY_COMMANDS_H
|
|
#define _SWAY_COMMANDS_H
|
|
#include <stdbool.h>
|
|
#include "config.h"
|
|
|
|
struct cmd_handler {
|
|
char *command;
|
|
int (*handle)(struct sway_config *config, int argc, char **argv);
|
|
};
|
|
|
|
int handle_command(struct sway_config *config, char *command);
|
|
|
|
#endif
|