diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-01-21 11:17:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-21 11:17:07 -0500 |
commit | c933781facbb664fedcd52ab19f35c392cd9e7b4 (patch) | |
tree | 95b0e63411e44958364321bbfe3bc00515625cc6 /include/sway/config.h | |
parent | 3dd915876d459a2aeeb7a5864330f5bc30bc2f00 (diff) | |
parent | 9f54cd89359119897fed2747c373879c09ae8706 (diff) |
Merge pull request #1570 from acrisci/config-references
Copy input config references
Diffstat (limited to 'include/sway/config.h')
-rw-r--r-- | include/sway/config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sway/config.h b/include/sway/config.h index 0a9c4595..967d3756 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -386,12 +386,14 @@ struct cmd_results *check_security_config(); int input_identifier_cmp(const void *item, const void *data); struct input_config *new_input_config(const char* identifier); void merge_input_config(struct input_config *dst, struct input_config *src); +struct input_config *copy_input_config(struct input_config *ic); void free_input_config(struct input_config *ic); void apply_input_config(struct input_config *input); int seat_name_cmp(const void *item, const void *data); struct seat_config *new_seat_config(const char* name); void merge_seat_config(struct seat_config *dst, struct seat_config *src); +struct seat_config *copy_seat_config(struct seat_config *seat); void free_seat_config(struct seat_config *ic); struct seat_attachment_config *seat_attachment_config_new(); struct seat_attachment_config *seat_config_get_attachment( |