aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/commands.h
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-02-24 12:50:24 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-02-24 12:50:24 -0500
commitac8269d536bf636bd0fbf8047cf6516912634864 (patch)
treed23376a0f745e113b3ddfb10573375c9d6ea587e /include/sway/commands.h
parentupdate log.h for latest wlr (diff)
downloadsway-ac8269d536bf636bd0fbf8047cf6516912634864.tar.gz
sway-ac8269d536bf636bd0fbf8047cf6516912634864.tar.zst
sway-ac8269d536bf636bd0fbf8047cf6516912634864.zip
take seat param for handle_command and rename
Diffstat (limited to 'include/sway/commands.h')
-rw-r--r--include/sway/commands.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h
index 4ee7af2a..9ff18823 100644
--- a/include/sway/commands.h
+++ b/include/sway/commands.h
@@ -46,9 +46,9 @@ struct cmd_results *checkarg(int argc, const char *name,
46 enum expected_args type, int val); 46 enum expected_args type, int val);
47 47
48/** 48/**
49 * Parse and handles a command. 49 * Parse and executes a command.
50 */ 50 */
51struct cmd_results *handle_command(char *command); 51struct cmd_results *execute_command(char *command, struct sway_seat *seat);
52/** 52/**
53 * Parse and handles a command during config file loading. 53 * Parse and handles a command during config file loading.
54 * 54 *