remove swayc_t typedef

This commit is contained in:
Tony Crisci 2018-03-29 14:31:10 -04:00
parent 874f009866
commit 83d09cf594
10 changed files with 53 additions and 47 deletions

View file

@ -7,20 +7,20 @@ extern char *prev_workspace_name;
char *workspace_next_name(const char *output_name);
swayc_t *workspace_create(const char *name);
struct sway_container *workspace_create(const char *name);
bool workspace_switch(swayc_t *workspace);
bool workspace_switch(struct sway_container *workspace);
struct sway_container *workspace_by_number(const char* name);
swayc_t *workspace_by_name(const char*);
struct sway_container *workspace_by_name(const char*);
struct sway_container *workspace_output_next(swayc_t *current);
struct sway_container *workspace_output_next(struct sway_container *current);
struct sway_container *workspace_next(swayc_t *current);
struct sway_container *workspace_next(struct sway_container *current);
struct sway_container *workspace_output_prev(swayc_t *current);
struct sway_container *workspace_output_prev(struct sway_container *current);
struct sway_container *workspace_prev(swayc_t *current);
struct sway_container *workspace_prev(struct sway_container *current);
#endif