aboutsummaryrefslogtreecommitdiff
path: root/sway/commands.h
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands.h')
-rw-r--r--sway/commands.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/sway/commands.h b/sway/commands.h
deleted file mode 100644
index c2046e13..00000000
--- a/sway/commands.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef _SWAY_COMMANDS_H
-#define _SWAY_COMMANDS_H
-#include <stdbool.h>
-#include "config.h"
-
-struct cmd_handler {
- char *command;
- bool (*handle)(struct sway_config *config, int argc, char **argv);
-};
-
-bool handle_command(struct sway_config *config, char *command);
-
-#endif