diff options
author | Keith Packard <keithp@keithp.com> | 2011-01-18 15:19:34 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-01-18 15:19:34 -0800 |
commit | abfea17342da774aa4e3a351a73c8f2af6e6fd28 (patch) | |
tree | 4f26f6e5d11ea4f7721723de8417ae297b437c2d | |
parent | 361128389e5cb0101cbd091ff8de77cf34608f6c (diff) | |
parent | e65c3f8bcc86845f21ac575e2bfb4b21b67d5ebf (diff) |
Merge remote branch 'ajax/for-keithp'
-rw-r--r-- | include/scrnintstr.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/scrnintstr.h b/include/scrnintstr.h index 995232524..9f4fbf3df 100644 --- a/include/scrnintstr.h +++ b/include/scrnintstr.h @@ -403,6 +403,9 @@ typedef void (* DeviceCursorCleanupProcPtr)( DeviceIntPtr /* pDev */, ScreenPtr /* pScreen */); +typedef void (*ConstrainCursorHarderProcPtr)( + DeviceIntPtr, ScreenPtr, int *, int *); + typedef struct _Screen { int myNum; /* index of this instance in Screens[] */ ATOM id; @@ -469,6 +472,7 @@ typedef struct _Screen { /* Cursor Procedures */ ConstrainCursorProcPtr ConstrainCursor; + ConstrainCursorHarderProcPtr ConstrainCursorHarder; CursorLimitsProcPtr CursorLimits; DisplayCursorProcPtr DisplayCursor; RealizeCursorProcPtr RealizeCursor; |