]> git.sesse.net Git - rdpsrv/blobdiff - Xserver/programs/Xserver/mi/mipointer.h
Removed Xserver/ directory, it does nothing useful ATM.
[rdpsrv] / Xserver / programs / Xserver / mi / mipointer.h
diff --git a/Xserver/programs/Xserver/mi/mipointer.h b/Xserver/programs/Xserver/mi/mipointer.h
deleted file mode 100644 (file)
index 121ed1c..0000000
+++ /dev/null
@@ -1,189 +0,0 @@
-/*
- * mipointer.h
- *
- */
-
-/* $XConsortium: mipointer.h,v 5.7 94/04/17 20:27:40 dpw Exp $ */
-/* $XFree86: xc/programs/Xserver/mi/mipointer.h,v 3.2 1996/03/10 12:12:45 dawes Exp $ */
-
-/*
-
-Copyright (c) 1989  X Consortium
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
-X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Except as contained in this notice, the name of the X Consortium shall not be
-used in advertising or otherwise to promote the sale, use or other dealings
-in this Software without prior written authorization from the X Consortium.
-*/
-
-#ifndef MIPOINTER_H
-#define MIPOINTER_H
-
-typedef struct _miPointerSpriteFuncRec {
-    Bool       (*RealizeCursor)(
-#if NeedFunctionPrototypes
-                    ScreenPtr /* pScr */,
-                    CursorPtr /* pCurs */
-#endif
-                    );
-    Bool       (*UnrealizeCursor)(
-#if NeedFunctionPrototypes
-                    ScreenPtr /* pScr */,
-                    CursorPtr /* pCurs */
-#endif
-                    );
-    void       (*SetCursor)(
-#if NeedFunctionPrototypes
-                    ScreenPtr /* pScr */,
-                    CursorPtr /* pCurs */,
-                    int  /* x */,
-                    int  /* y */
-#endif
-                    );
-    void       (*MoveCursor)(
-#if NeedFunctionPrototypes
-                    ScreenPtr /* pScr */,
-                    int  /* x */,
-                    int  /* y */
-#endif
-                    );
-} miPointerSpriteFuncRec, *miPointerSpriteFuncPtr;
-
-typedef struct _miPointerScreenFuncRec {
-    Bool       (*CursorOffScreen)(
-#if NeedFunctionPrototypes
-                    ScreenPtr* /* ppScr */,
-                    int*  /* px */,
-                    int*  /* py */
-#endif
-                    );
-    void       (*CrossScreen)(
-#if NeedFunctionPrototypes
-                    ScreenPtr /* pScr */,
-                    int  /* entering */
-#endif
-                    );
-    void       (*WarpCursor)(
-#if NeedFunctionPrototypes
-                    ScreenPtr /* pScr */,
-                    int  /* x */,
-                    int  /* y */
-#endif
-                    );
-    void       (*EnqueueEvent)(
-#if NeedFunctionPrototypes
-                    xEventPtr /* event */
-#endif
-                    );
-    void       (*NewEventScreen)(
-#if NeedFunctionPrototypes
-                    ScreenPtr /* pScr */,
-                   Bool /* fromDIX */
-#endif
-                    );
-} miPointerScreenFuncRec, *miPointerScreenFuncPtr;
-
-extern Bool miDCInitialize(
-#if NeedFunctionPrototypes
-    ScreenPtr /*pScreen*/,
-    miPointerScreenFuncPtr /*screenFuncs*/
-#endif
-);
-
-extern Bool miPointerInitialize(
-#if NeedFunctionPrototypes
-    ScreenPtr /*pScreen*/,
-    miPointerSpriteFuncPtr /*spriteFuncs*/,
-    miPointerScreenFuncPtr /*screenFuncs*/,
-    Bool /*waitForUpdate*/
-#endif
-);
-
-extern void miPointerWarpCursor(
-#if NeedFunctionPrototypes
-    ScreenPtr /*pScreen*/,
-    int /*x*/,
-    int /*y*/
-#endif
-);
-
-extern int miPointerGetMotionBufferSize(
-#if NeedFunctionPrototypes
-    void
-#endif
-);
-
-extern int miPointerGetMotionEvents(
-#if NeedFunctionPrototypes
-    DeviceIntPtr /*pPtr*/,
-    xTimecoord * /*coords*/,
-    unsigned long /*start*/,
-    unsigned long /*stop*/,
-    ScreenPtr /*pScreen*/
-#endif
-);
-
-extern void miPointerUpdate(
-#if NeedFunctionPrototypes
-    void
-#endif
-);
-
-extern void miPointerDeltaCursor(
-#if NeedFunctionPrototypes
-    int /*dx*/,
-    int /*dy*/,
-    unsigned long /*time*/
-#endif
-);
-
-extern void miPointerAbsoluteCursor(
-#if NeedFunctionPrototypes
-    int /*x*/,
-    int /*y*/,
-    unsigned long /*time*/
-#endif
-);
-
-extern void miPointerPosition(
-#if NeedFunctionPrototypes
-    int * /*x*/,
-    int * /*y*/
-#endif
-);
-
-#undef miRegisterPointerDevice
-extern void miRegisterPointerDevice(
-#if NeedFunctionPrototypes
-    ScreenPtr /*pScreen*/,
-    DevicePtr /*pDevice*/
-#endif
-);
-
-#define miRegisterPointerDevice(pScreen,pDevice) \
-       _miRegisterPointerDevice(pScreen,pDevice)
-
-extern void _miRegisterPointerDevice(
-#if NeedFunctionPrototypes
-    ScreenPtr /*pScreen*/,
-    DeviceIntPtr /*pDevice*/
-#endif
-);
-
-#endif /* MIPOINTER_H */