105b261ecSmrg/* 205b261ecSmrg 305b261ecSmrgCopyright 1993 by Davor Matic 405b261ecSmrg 505b261ecSmrgPermission to use, copy, modify, distribute, and sell this software 605b261ecSmrgand its documentation for any purpose is hereby granted without fee, 705b261ecSmrgprovided that the above copyright notice appear in all copies and that 805b261ecSmrgboth that copyright notice and this permission notice appear in 905b261ecSmrgsupporting documentation. Davor Matic makes no representations about 1005b261ecSmrgthe suitability of this software for any purpose. It is provided "as 1105b261ecSmrgis" without express or implied warranty. 1205b261ecSmrg 1305b261ecSmrg*/ 1405b261ecSmrg 1505b261ecSmrg#ifndef XNESTPOINTER_H 1605b261ecSmrg#define XNESTPOINTER_H 1705b261ecSmrg 1805b261ecSmrg#define MAXBUTTONS 256 1905b261ecSmrg 2005b261ecSmrg#define XNEST_POINTER_EVENT_MASK \ 2105b261ecSmrg (ButtonPressMask | ButtonReleaseMask | PointerMotionMask | \ 2205b261ecSmrg EnterWindowMask | LeaveWindowMask) 2305b261ecSmrg 2405b261ecSmrgextern DeviceIntPtr xnestPointerDevice; 2505b261ecSmrg 2635c4bbdfSmrgvoid xnestChangePointerControl(DeviceIntPtr pDev, PtrCtrl * ctrl); 2705b261ecSmrgint xnestPointerProc(DeviceIntPtr pDev, int onoff); 2805b261ecSmrg 2935c4bbdfSmrg#endif /* XNESTPOINTER_H */ 30