aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2016-09-07 08:01:28 -0400
committerGitHub <noreply@github.com>2016-09-07 08:01:28 -0400
commit1b4b42fc65203306f4216b77a476784249383018 (patch)
treebb1fc5102d3d8587c78ca11271631a584994da3b /include
parent1510a21f00897a9ef85563d4b5d2b09e7b5910af (diff)
parent511eed90cd925ec6bba93a8a749eb6a230ac5f98 (diff)
Merge pull request #885 from zandrmartin/commands-refactor
merge resize.c into commands/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 @@
-#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