1/*
2 * mipointrst.h
3 *
4 */
5
6/*
7
8Copyright 1989, 1998  The Open Group
9
10Permission to use, copy, modify, distribute, and sell this software and its
11documentation for any purpose is hereby granted without fee, provided that
12the above copyright notice appear in all copies and that both that
13copyright notice and this permission notice appear in supporting
14documentation.
15
16The above copyright notice and this permission notice shall be included in
17all copies or substantial portions of the Software.
18
19THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
22OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26Except as contained in this notice, the name of The Open Group shall not be
27used in advertising or otherwise to promote the sale, use or other dealings
28in 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
37typedef 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