mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-06-19 04:18:27 +02:00
Xi: add IEventBase global variable. Stores event base for X Input events.
This commit is contained in:
parent
46340b7406
commit
8208b842b7
2 changed files with 4 additions and 0 deletions
|
|
@ -37,6 +37,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
#define EXGLOBALS_H 1
|
||||
|
||||
extern int IReqCode;
|
||||
extern int IEventBase;
|
||||
extern int BadDevice;
|
||||
extern int BadMode;
|
||||
extern int DeviceBusy;
|
||||
|
|
|
|||
|
|
@ -277,6 +277,7 @@ static int (*SProcIVector[])(ClientPtr) = {
|
|||
*/
|
||||
|
||||
int IReqCode = 0;
|
||||
int IEventBase = 0;
|
||||
int BadDevice = 0;
|
||||
static int BadEvent = 1;
|
||||
int BadMode = 2;
|
||||
|
|
@ -885,6 +886,7 @@ RestoreExtensionEvents(void)
|
|||
int i, j;
|
||||
|
||||
IReqCode = 0;
|
||||
IEventBase = 0;
|
||||
|
||||
for (i = 0; i < ExtEventIndex - 1; i++) {
|
||||
if ((EventInfo[i].type >= LASTEvent) && (EventInfo[i].type < 128))
|
||||
|
|
@ -1122,6 +1124,7 @@ XInputExtensionInit(void)
|
|||
SProcIDispatch, IResetProc, StandardMinorOpcode);
|
||||
if (extEntry) {
|
||||
IReqCode = extEntry->base;
|
||||
IEventBase = extEntry->eventBase;
|
||||
AllExtensionVersions[IReqCode - 128] = thisversion;
|
||||
MakeDeviceTypeAtoms();
|
||||
RT_INPUTCLIENT = CreateNewResourceType((DeleteType) InputClientGone);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue