blob: af89179a48014d4b9a1f5162c0fe7d2a82b609a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef ob__resist_h
#define ob__resist_h
struct _ObClient;
#include <glib.h>
void resist_move_windows(struct _ObClient *c, gint *x, gint *y);
void resist_move_monitors(struct _ObClient *c, gint *x, gint *y);
void resist_size_windows(struct _ObClient *c, gint *w, gint *h, ObCorner corn);
void resist_size_monitors(struct _ObClient *c, gint *w, gint *h,ObCorner corn);
#endif
|