1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-05-28 01:36:23 +02:00
sway/include/resize.h
2016-07-03 12:11:21 -05:00

15 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