mirror of
https://github.com/swaywm/sway.git
synced 2025-12-16 08:56:32 -05:00
move_container_to fixup
This commit is contained in:
parent
c4257055eb
commit
1fa7a91bfb
7 changed files with 45 additions and 19 deletions
|
|
@ -15,7 +15,11 @@ void sway_log_colors(int mode);
|
|||
void sway_log(log_importance_t verbosity, const char* format, ...) __attribute__((format(printf,2,3)));
|
||||
void sway_log_errno(log_importance_t verbosity, char* format, ...) __attribute__((format(printf,2,3)));
|
||||
void sway_abort(const char* format, ...) __attribute__((format(printf,1,2)));
|
||||
bool sway_assert(bool condition, const char* format, ...) __attribute__((format(printf,2,3)));
|
||||
|
||||
bool _sway_assert(bool condition, const char* format, ...) __attribute__((format(printf,2,3)));
|
||||
#define sway_assert(COND, FMT, ...) \
|
||||
_sway_assert(COND, "%s:" FMT, __PRETTY_FUNCTION__, ##__VA_ARGS__)
|
||||
|
||||
void error_handler(int sig);
|
||||
|
||||
void layout_log(const swayc_t *c, int depth);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue