summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Zandr Martin <zandrmartin@gmail.com>2016-09-07 06:48:41 -0500
committerLibravatar Zandr Martin <zandrmartin@gmail.com>2016-09-07 06:48:41 -0500
commit511eed90cd925ec6bba93a8a749eb6a230ac5f98 (patch)
treebb1fc5102d3d8587c78ca11271631a584994da3b /include
parentRemove extraneous logging (diff)
downloadsway-511eed90cd925ec6bba93a8a749eb6a230ac5f98.tar.gz
sway-511eed90cd925ec6bba93a8a749eb6a230ac5f98.tar.zst
sway-511eed90cd925ec6bba93a8a749eb6a230ac5f98.zip
squash commits, move enum into resize.c
Diffstat (limited to 'include')
-rw-r--r--include/sway/resize.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/sway/resize.h b/include/sway/resize.h
deleted file mode 100644
index 0d382994..00000000
--- a/include/sway/resize.h
+++ /dev/null
@@ -1,14 +0,0 @@
1#ifndef _SWAY_RESIZE_H
2#define _SWAY_RESIZE_H
3#include <stdbool.h>
4
5enum resize_dim_types {
6 RESIZE_DIM_PX,
7 RESIZE_DIM_PPT,
8 RESIZE_DIM_DEFAULT,
9};
10
11bool set_size(int dimension, bool use_width);
12bool resize(int dimension, bool use_width, enum resize_dim_types dim_type);
13
14#endif