diff options
author | Peter Hutterer <peter@cs.unisa.edu.au> | 2007-01-08 12:32:27 +1030 |
---|---|---|
committer | Peter Hutterer <whot@hyena.localdomain> | 2007-01-08 12:32:27 +1030 |
commit | ebc24f1fad85281a1e9e795ec261eea111f40304 (patch) | |
tree | ee022e09eeed915efd133e8be8078a104a17af44 /src/XExtInt.c | |
parent | 448def03e88d3460ce97a49df0816dedd609c1e3 (diff) |
Adding XDefineDeviceCursor and XUndefDeviceCursor calls
Fix casting typo in XWarpDevicePointer and XQueryDevicePointer
Reverting useless whitespace commit in XExtInt.c
Diffstat (limited to 'src/XExtInt.c')
-rw-r--r-- | src/XExtInt.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/XExtInt.c b/src/XExtInt.c index 10f728d..3d00e06 100644 --- a/src/XExtInt.c +++ b/src/XExtInt.c @@ -106,23 +106,23 @@ XEXT_GENERATE_FIND_DISPLAY(XInput_find_display, xinput_info, xinput_extension_name, &xinput_extension_hooks, IEVENTS, NULL) - static XEXT_GENERATE_ERROR_STRING(XInputError, xinput_extension_name, - IERRORS, XInputErrorList) +static XEXT_GENERATE_ERROR_STRING(XInputError, xinput_extension_name, + IERRORS, XInputErrorList) /******************************************************************* - * - * Input extension versions. - * - */ - static XExtensionVersion versions[] = { {XI_Absent, 0, 0}, - {XI_Present, XI_Initial_Release_Major, XI_Initial_Release_Minor}, - {XI_Present, XI_Add_XDeviceBell_Major, XI_Add_XDeviceBell_Minor}, - {XI_Present, XI_Add_XSetDeviceValuators_Major, - XI_Add_XSetDeviceValuators_Minor}, - {XI_Present, XI_Add_XChangeDeviceControl_Major, - XI_Add_XChangeDeviceControl_Minor}, - {XI_Present, XI_Add_DevicePresenceNotify_Major, - XI_Add_DevicePresenceNotify_Minor} - }; +* +* Input extension versions. +* +*/ +static XExtensionVersion versions[] = { {XI_Absent, 0, 0}, +{XI_Present, XI_Initial_Release_Major, XI_Initial_Release_Minor}, +{XI_Present, XI_Add_XDeviceBell_Major, XI_Add_XDeviceBell_Minor}, +{XI_Present, XI_Add_XSetDeviceValuators_Major, + XI_Add_XSetDeviceValuators_Minor}, +{XI_Present, XI_Add_XChangeDeviceControl_Major, + XI_Add_XChangeDeviceControl_Minor}, +{XI_Present, XI_Add_DevicePresenceNotify_Major, + XI_Add_DevicePresenceNotify_Minor} +}; /*********************************************************************** * |