aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/config.h
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-03-29 14:31:10 -0400
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-03-29 14:31:10 -0400
commit83d09cf5945ba10a703dc5cc977a6d2814f0fd64 (patch)
treeda290b9033e91b295fd01fcf84ca4e74c9a37c1a /include/sway/config.h
parentmove tree includes to their own directory (diff)
downloadsway-83d09cf5945ba10a703dc5cc977a6d2814f0fd64.tar.gz
sway-83d09cf5945ba10a703dc5cc977a6d2814f0fd64.tar.zst
sway-83d09cf5945ba10a703dc5cc977a6d2814f0fd64.zip
remove swayc_t typedef
Diffstat (limited to 'include/sway/config.h')
-rw-r--r--include/sway/config.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 48ebba3b..e9910be4 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -356,7 +356,7 @@ struct sway_config {
356 struct input_config *input_config; 356 struct input_config *input_config;
357 struct seat_config *seat_config; 357 struct seat_config *seat_config;
358 struct sway_seat *seat; 358 struct sway_seat *seat;
359 swayc_t *current_container; 359 struct sway_container *current_container;
360 } handler_context; 360 } handler_context;
361}; 361};
362 362
@@ -416,7 +416,8 @@ void output_get_identifier(char *identifier, size_t len,
416 struct sway_output *output); 416 struct sway_output *output);
417struct output_config *new_output_config(const char *name); 417struct output_config *new_output_config(const char *name);
418void merge_output_config(struct output_config *dst, struct output_config *src); 418void merge_output_config(struct output_config *dst, struct output_config *src);
419void apply_output_config(struct output_config *oc, swayc_t *output); 419void apply_output_config(struct output_config *oc,
420 struct sway_container *output);
420void free_output_config(struct output_config *oc); 421void free_output_config(struct output_config *oc);
421 422
422/** 423/**