diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-12-08 10:53:03 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-12-08 10:53:03 +0000 |
commit | dcd2a9024f6c62f64a6014e56914dede60ad2f5f (patch) | |
tree | 9ba5dd8839bb3dd4434eb511c2fc7f03b9600207 /xserver/include | |
parent | d86224ecd984420f952f9e4b732d72631e7090ed (diff) |
Update to xserver 1.14.4
Diffstat (limited to 'xserver/include')
-rw-r--r-- | xserver/include/dix.h | 11 | ||||
-rw-r--r-- | xserver/include/dixstruct.h | 1 | ||||
-rw-r--r-- | xserver/include/do-not-use-config.h.in | 3 | ||||
-rw-r--r-- | xserver/include/input.h | 6 | ||||
-rw-r--r-- | xserver/include/xorg-config.h.in | 3 |
5 files changed, 20 insertions, 4 deletions
diff --git a/xserver/include/dix.h b/xserver/include/dix.h index 171e56e11..fa7ccd4a3 100644 --- a/xserver/include/dix.h +++ b/xserver/include/dix.h @@ -315,8 +315,19 @@ extern _X_EXPORT WindowPtr GetSpriteWindow(DeviceIntPtr pDev); extern _X_EXPORT void +NoticeTime(const DeviceIntPtr dev, + TimeStamp time); +extern _X_EXPORT void NoticeEventTime(InternalEvent *ev, DeviceIntPtr dev); +extern _X_EXPORT TimeStamp +LastEventTime(int deviceid); +extern _X_EXPORT Bool +LastEventTimeWasReset(int deviceid); +extern _X_EXPORT void +LastEventTimeToggleResetFlag(int deviceid, Bool state); +extern _X_EXPORT void +LastEventTimeToggleResetAll(Bool state); extern void EnqueueEvent(InternalEvent * /* ev */ , diff --git a/xserver/include/dixstruct.h b/xserver/include/dixstruct.h index aef822ca2..492f96047 100644 --- a/xserver/include/dixstruct.h +++ b/xserver/include/dixstruct.h @@ -155,7 +155,6 @@ typedef struct _WorkQueue { } WorkQueueRec; extern _X_EXPORT TimeStamp currentTime; -extern _X_EXPORT TimeStamp lastDeviceEventTime[MAXDEVICES]; extern _X_EXPORT int CompareTimeStamps(TimeStamp /*a */ , diff --git a/xserver/include/do-not-use-config.h.in b/xserver/include/do-not-use-config.h.in index 0851744b4..799755c72 100644 --- a/xserver/include/do-not-use-config.h.in +++ b/xserver/include/do-not-use-config.h.in @@ -247,6 +247,9 @@ /* Define to 1 if you have the <rpcsvc/dbm.h> header file. */ #undef HAVE_RPCSVC_DBM_H +/* Define to 1 if you have the `seteuid' function. */ +#undef HAVE_SETEUID + /* Use CommonCrypto SHA1 functions */ #undef HAVE_SHA1_IN_COMMONCRYPTO diff --git a/xserver/include/input.h b/xserver/include/input.h index 7eed60bcf..bff7ffe22 100644 --- a/xserver/include/input.h +++ b/xserver/include/input.h @@ -113,9 +113,9 @@ SOFTWARE. #endif enum InputLevel { - CORE, - XI, - XI2, + CORE = 1, + XI = 2, + XI2 = 3, }; typedef unsigned long Leds; diff --git a/xserver/include/xorg-config.h.in b/xserver/include/xorg-config.h.in index 5dee82519..2075cb5b1 100644 --- a/xserver/include/xorg-config.h.in +++ b/xserver/include/xorg-config.h.in @@ -139,6 +139,9 @@ /* Have X server platform bus support */ #undef XSERVER_PLATFORM_BUS +/* Define to 1 if you have the `seteuid' function. */ +#undef HAVE_SETEUID + /* Use X server privilege separation */ #undef X_PRIVSEP |