1afe13c8eSmrg/* 2afe13c8eSmrg * Copyright 2007 Kim woelders 3afe13c8eSmrg * 4afe13c8eSmrg * Permission to use, copy, modify, distribute, and sell this software and its 5afe13c8eSmrg * documentation for any purpose is hereby granted without fee, provided that 6afe13c8eSmrg * the above copyright notice appear in all copies and that both that copyright 7afe13c8eSmrg * notice and this permission notice appear in supporting documentation, and 8afe13c8eSmrg * that the name of the copyright holders not be used in advertising or 9afe13c8eSmrg * publicity pertaining to distribution of the software without specific, 10afe13c8eSmrg * written prior permission. The copyright holders make no representations 11afe13c8eSmrg * about the suitability of this software for any purpose. It is provided "as 12afe13c8eSmrg * is" without express or implied warranty. 13afe13c8eSmrg * 14afe13c8eSmrg * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 15afe13c8eSmrg * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 16afe13c8eSmrg * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR 17afe13c8eSmrg * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 18afe13c8eSmrg * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 19afe13c8eSmrg * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 20afe13c8eSmrg * OF THIS SOFTWARE. 21afe13c8eSmrg */ 22afe13c8eSmrg#ifndef _CLIENTWIN_H_ 23afe13c8eSmrg#define _CLIENTWIN_H_ 24afe13c8eSmrg 25afe13c8eSmrg#include <X11/Xlib.h> 26afe13c8eSmrg 27afe13c8eSmrgextern Window Find_Client(Display * dpy, Window root, Window target_win); 28afe13c8eSmrg 29afe13c8eSmrg#endif 30