summaryrefslogtreecommitdiff
path: root/include/sway/commands.h
diff options
context:
space:
mode:
authoremersion <[email protected]>2017-12-05 10:40:55 +0100
committeremersion <[email protected]>2017-12-05 10:40:55 +0100
commit90f7f1a0e61fa20ed1b74b9df057aa70abc791ed (patch)
treee201e4fb9fef471dd2fcf9581e26addfe3550502 /include/sway/commands.h
parent83b4c0648d75932c693b8636242202ea728035da (diff)
Add minimal config subsystem
Diffstat (limited to 'include/sway/commands.h')
-rw-r--r--include/sway/commands.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h
index df5c6859..b1f0423d 100644
--- a/include/sway/commands.h
+++ b/include/sway/commands.h
@@ -47,6 +47,16 @@ struct cmd_results *checkarg(int argc, const char *name,
*/
struct cmd_results *handle_command(char *command);
/**
+ * Parse and handles a command during config file loading.
+ *
+ * Do not use this under normal conditions.
+ */
+struct cmd_results *config_command(char *command, enum cmd_status block);
+/*
+ * Parses a command policy rule.
+ */
+struct cmd_results *config_commands_command(char *exec);
+/**
* Allocates a cmd_results object.
*/
struct cmd_results *cmd_results_new(enum cmd_status status, const char* input, const char *error, ...);