mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-01-01 06:20:17 +01:00
8bed4be1f3
In preparation for using type safety.
12 lines
246 B
C
12 lines
246 B
C
#ifndef _SWAY_ARRANGE_H
|
|
#define _SWAY_ARRANGE_H
|
|
#include "sway/desktop/transaction.h"
|
|
|
|
struct sway_container;
|
|
|
|
/**
|
|
* Arrange layout for all the children of the given container.
|
|
*/
|
|
void arrange_windows(struct sway_container *container);
|
|
|
|
#endif
|