mirror of
https://github.com/swaywm/sway.git
synced 2025-11-04 13:29:52 -05:00
remove swayc_t typedef
This commit is contained in:
parent
874f009866
commit
83d09cf594
10 changed files with 53 additions and 47 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue