summaryrefslogtreecommitdiffstats
path: root/compton.h
diff options
context:
space:
mode:
authorChristopher Jeffrey <[email protected]>2012-09-13 10:24:37 -0500
committerChristopher Jeffrey <[email protected]>2012-09-13 10:24:37 -0500
commit6278604753e1f9a08a75119f9b661178dd450bd0 (patch)
treec030e93bb9a5472b152783eac56830046c2bccf5 /compton.h
parent212582469a1f7ac8a6fd81bc8619ca401e247b77 (diff)
downloadtdebase-6278604753e1f9a08a75119f9b661178dd450bd0.tar.gz
tdebase-6278604753e1f9a08a75119f9b661178dd450bd0.zip
fix determine_evmask warnings
Diffstat (limited to 'compton.h')
-rw-r--r--compton.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/compton.h b/compton.h
index e89728a6a..2633a98ed 100644
--- a/compton.h
+++ b/compton.h
@@ -143,6 +143,12 @@ typedef struct _fade {
Display *dpy;
} fade;
+typedef enum {
+ WIN_EVMODE_UNKNOWN,
+ WIN_EVMODE_FRAME,
+ WIN_EVMODE_CLIENT
+} win_evmode_t;
+
extern int root_height, root_width;
extern Atom atom_client_attr;
@@ -356,6 +362,9 @@ set_ignore(Display *dpy, unsigned long sequence);
static int
should_ignore(Display *dpy, unsigned long sequence);
+static long
+determine_evmask(Display *dpy, Window wid, win_evmode_t mode);
+
static win *
find_win(Display *dpy, Window id);