move BUTTONMASK away from header

This commit is contained in:
Julien Danjou 2008-01-23 15:18:37 +01:00
parent 0b678ce0c2
commit e7447c24d3
2 changed files with 3 additions and 3 deletions

View File

@ -28,6 +28,9 @@
extern AwesomeConf globalconf;
/** Mask shorthands, used in event.c and window.c */
#define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
/** Set client WM_STATE property
* \param win Window
* \param state state

View File

@ -24,9 +24,6 @@
#include <X11/Xlib.h>
/** Mask shorthands, used in event.c and window.c */
#define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
int window_setstate(Window, long);
long window_getstate(Window);
Status window_configure(Window, Area, int);