1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-02-04 20:45:56 +01:00
sway-patched-tray-menu/include/sway/resize.h
2016-09-01 08:18:37 -04:00

14 lines
280 B
C

#ifndef _SWAY_RESIZE_H
#define _SWAY_RESIZE_H
#include <stdbool.h>
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