squash commits, move enum into resize.c

This commit is contained in:
Zandr Martin 2016-09-07 06:48:41 -05:00
parent 1510a21f00
commit 511eed90cd
No known key found for this signature in database
GPG key ID: AA2BB8EF77F7BBDC
6 changed files with 342 additions and 356 deletions

View file

@ -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