Remove C_TYPES

This commit is contained in:
emersion 2018-05-02 11:01:23 +01:00
parent fe9cc21ea7
commit fd17812ff8
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
5 changed files with 20 additions and 37 deletions

View file

@ -18,16 +18,15 @@ struct sway_seat;
* it on this list.
*/
enum sway_container_type {
C_ROOT,
C_OUTPUT,
C_WORKSPACE,
C_CONTAINER,
C_VIEW,
// Keep last
C_TYPES,
C_ROOT = 1 << 0,
C_OUTPUT = 1 << 1,
C_WORKSPACE = 1 << 2,
C_CONTAINER = 1 << 3,
C_VIEW = 1 << 4,
};
#define C_ALL (C_ROOT | C_OUTPUT | C_WORKSPACE | C_CONTAINER | C_VIEW)
enum sway_container_layout {
L_NONE,
L_HORIZ,