aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/config.h
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-01-17 09:49:02 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-01-17 09:49:02 -0500
commit9f54cd89359119897fed2747c373879c09ae8706 (patch)
tree024ecf284c38c5017068b82902d66ec4342f8291 /include/sway/config.h
parentMerge pull request #1566 from acrisci/render-loop (diff)
downloadsway-9f54cd89359119897fed2747c373879c09ae8706.tar.gz
sway-9f54cd89359119897fed2747c373879c09ae8706.tar.zst
sway-9f54cd89359119897fed2747c373879c09ae8706.zip
copy config references for input and seat
Diffstat (limited to 'include/sway/config.h')
-rw-r--r--include/sway/config.h2
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();
386int input_identifier_cmp(const void *item, const void *data); 386int input_identifier_cmp(const void *item, const void *data);
387struct input_config *new_input_config(const char* identifier); 387struct input_config *new_input_config(const char* identifier);
388void merge_input_config(struct input_config *dst, struct input_config *src); 388void merge_input_config(struct input_config *dst, struct input_config *src);
389struct input_config *copy_input_config(struct input_config *ic);
389void free_input_config(struct input_config *ic); 390void free_input_config(struct input_config *ic);
390void apply_input_config(struct input_config *input); 391void apply_input_config(struct input_config *input);
391 392
392int seat_name_cmp(const void *item, const void *data); 393int seat_name_cmp(const void *item, const void *data);
393struct seat_config *new_seat_config(const char* name); 394struct seat_config *new_seat_config(const char* name);
394void merge_seat_config(struct seat_config *dst, struct seat_config *src); 395void merge_seat_config(struct seat_config *dst, struct seat_config *src);
396struct seat_config *copy_seat_config(struct seat_config *seat);
395void free_seat_config(struct seat_config *ic); 397void free_seat_config(struct seat_config *ic);
396struct seat_attachment_config *seat_attachment_config_new(); 398struct seat_attachment_config *seat_attachment_config_new();
397struct seat_attachment_config *seat_config_get_attachment( 399struct seat_attachment_config *seat_config_get_attachment(