aboutsummaryrefslogtreecommitdiffstats
path: root/include/commands.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-09-07 18:14:37 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-09-07 18:14:37 -0400
commit7654f5e7cdbf5edff2f576a59cf04c530dd6efb5 (patch)
tree8496fd8673d31bac1802d756885a8fc64245a552 /include/commands.h
parentMerge pull request #172 from taiyu-len/master (diff)
parentstrdup + style (diff)
downloadsway-7654f5e7cdbf5edff2f576a59cf04c530dd6efb5.tar.gz
sway-7654f5e7cdbf5edff2f576a59cf04c530dd6efb5.tar.zst
sway-7654f5e7cdbf5edff2f576a59cf04c530dd6efb5.zip
Merge pull request #173 from taiyu-len/config_mode
config modes
Diffstat (limited to 'include/commands.h')
-rw-r--r--include/commands.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/commands.h b/include/commands.h
index 808e64eb..8fb0c1d8 100644
--- a/include/commands.h
+++ b/include/commands.h
@@ -5,7 +5,7 @@
5 5
6struct cmd_handler { 6struct cmd_handler {
7 char *command; 7 char *command;
8 bool (*handle)(struct sway_config *config, int argc, char **argv); 8 bool (*handle)(int argc, char **argv);
9 enum { 9 enum {
10 CMD_COMPOSITOR_READY, 10 CMD_COMPOSITOR_READY,
11 CMD_KEYBIND, 11 CMD_KEYBIND,
@@ -14,7 +14,7 @@ struct cmd_handler {
14}; 14};
15 15
16struct cmd_handler *find_handler(char *line); 16struct cmd_handler *find_handler(char *line);
17bool handle_command(struct sway_config *config, char *command); 17bool handle_command(char *command);
18 18
19void remove_view_from_scratchpad(); 19void remove_view_from_scratchpad();
20 20