1 /*
2  * mipointrst.h
3  *
4  */
5 
6 /*
7 
8 Copyright 1989, 1998  The Open Group
9 
10 Permission to use, copy, modify, distribute, and sell this software and its
11 documentation for any purpose is hereby granted without fee, provided that
12 the above copyright notice appear in all copies and that both that
13 copyright notice and this permission notice appear in supporting
14 documentation.
15 
16 The above copyright notice and this permission notice shall be included in
17 all copies or substantial portions of the Software.
18 
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
22 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 
26 Except as contained in this notice, the name of The Open Group shall not be
27 used in advertising or otherwise to promote the sale, use or other dealings
28 in this Software without prior written authorization from The Open Group.
29 */
30 
31 #ifndef MIPOINTRST_H
32 #define MIPOINTRST_H
33 
34 #include "mipointer.h"
35 #include "scrnintstr.h"
36 
37 typedef struct {
38     miPointerSpriteFuncPtr spriteFuncs; /* sprite-specific methods */
39     miPointerScreenFuncPtr screenFuncs; /* screen-specific methods */
40     CloseScreenProcPtr CloseScreen;
41     Bool waitForUpdate;         /* don't move cursor from input thread */
42     Bool showTransparent;       /* show empty cursors */
43 } miPointerScreenRec, *miPointerScreenPtr;
44 #endif                          /* MIPOINTRST_H */
45