/*
 * expose.c - A simple expose event cruncher and handler.
 */

#include <X11/Xlib.h>
#include <X11/Xutil.h>

#include "wind.h"
#include "expose.h"

static struct wind *expose_window; 
static Region expose_region;	

static struct wind *(*expose_find_window_func)(XExposeEvent *);

/* ------------------------------------------------------------------------ */
void set_find_window_func(struct wind *(*func)(XExposeEvent *))
{
     expose_find_window_func = func;
}
