You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
280 B
15 lines
280 B
9 years ago
|
#ifndef _SWAY_RESIZE_H
|
||
|
#define _SWAY_RESIZE_H
|
||
9 years ago
|
#include <stdbool.h>
|
||
9 years ago
|
|
||
9 years ago
|
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);
|
||
9 years ago
|
|
||
|
#endif
|