diff options
author | Jose Diez <[email protected]> | 2015-08-10 22:31:23 +0200 |
---|---|---|
committer | Jose Diez <[email protected]> | 2015-08-10 22:49:50 +0200 |
commit | 8cc2c6fa7a4b5e8b2d2030033a4bb9f7df45fc42 (patch) | |
tree | d079178cb01d2dd0bbb58792133d64e9cc31d4e7 /sway/container.h | |
parent | caee41b7775d6e7eacc37837b31d92808e1a34de (diff) |
Basic workspace functionality
Diffstat (limited to 'sway/container.h')
-rw-r--r-- | sway/container.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sway/container.h b/sway/container.h new file mode 100644 index 00000000..d853661c --- /dev/null +++ b/sway/container.h @@ -0,0 +1,8 @@ +#ifndef _SWAY_CONTAINER_H +#define _SWAY_CONTAINER_H + +#include "layout.h" + +void container_map(swayc_t *, void (*f)(swayc_t *, void *), void *); + +#endif |