1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-01-24 07:58:22 +01:00
sway-patched-tray-menu/include/resize.h

15 lines
280 B
C
Raw Normal View History

#ifndef _SWAY_RESIZE_H
#define _SWAY_RESIZE_H
2015-08-22 21:03:45 -07:00
#include <stdbool.h>
2016-07-03 12:11:21 -05:00
enum resize_dim_types {
RESIZE_DIM_PX,
RESIZE_DIM_PPT,
RESIZE_DIM_DEFAULT,
};
bool set_size(int dimension, bool use_width);
bool resize(int dimension, bool use_width, enum resize_dim_types dim_type);
#endif