summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2009-03-04 21:01:58 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2009-03-11 14:38:15 +1000
commitc6da12b3965f60d893c3fabad4f95dac10ebe7d9 (patch)
tree344149614f0d2a6d79cf33797f4b75cc13ded6bf /include
parent65dbec3d82259bd7bbde5b7a2cdba44727a5606a (diff)
downloadxorg-lib-libXi-c6da12b3965f60d893c3fabad4f95dac10ebe7d9.tar.gz
XInput2.h: Get rid of the /* foo */ in the declarations.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'include')
-rw-r--r--include/X11/extensions/XInput2.h92
1 files changed, 46 insertions, 46 deletions
diff --git a/include/X11/extensions/XInput2.h b/include/X11/extensions/XInput2.h
index 498e0c7..24d6f4e 100644
--- a/include/X11/extensions/XInput2.h
+++ b/include/X11/extensions/XInput2.h
@@ -152,79 +152,79 @@ typedef struct {
_XFUNCPROTOBEGIN
extern Bool XIQueryDevicePointer(
- Display* /* display */,
- int /* deviceid */,
- Window /* win */,
- Window* /* root */,
- Window* /* child */,
- int* /* root_x */,
- int* /* root_y */,
- int* /* win_x */,
- int* /* win_y */,
- unsigned int* /* mask */
+ Display* display,
+ int deviceid,
+ Window win,
+ Window* root,
+ Window* child,
+ int* root_x,
+ int* root_y,
+ int* win_x,
+ int* win_y,
+ unsigned int* mask
);
extern Bool XIWarpDevicePointer(
- Display* /* display */,
- int /* deviceid */,
- Window /* src_win */,
- Window /* dst_win */,
- int /* src_x */,
- int /* src_y */,
- unsigned int /* src_width */,
- unsigned int /* src_height */,
- int /* dst_x */,
- int /* dst_y */
+ Display* display,
+ int deviceid,
+ Window src_win,
+ Window dst_win,
+ int src_x,
+ int src_y,
+ unsigned int src_width,
+ unsigned int src_height,
+ int dst_x,
+ int dst_y
);
extern Status XIDefineDeviceCursor(
- Display* /* display */,
- int /* deviceid */,
- Window /* win */,
- Cursor /* cursor */
+ Display* display,
+ int deviceid,
+ Window win,
+ Cursor cursor
);
extern Status XIUndefineDeviceCursor(
- Display* /* display */,
- int /* deviceid */,
- Window /* win */
+ Display* display,
+ int deviceid,
+ Window win
);
extern Status XIChangeDeviceHierarchy(
- Display* /* display */,
- XIAnyHierarchyChangeInfo* /* changes*/,
- int /* num_changes */
+ Display* display,
+ XIAnyHierarchyChangeInfo* changes,
+ int num_changes
);
extern Status XISetClientPointer(
- Display* /* dpy */,
- Window /* win */,
- int /* deviceid */
+ Display* dpy,
+ Window win,
+ int deviceid
);
extern Bool XIGetClientPointer(
- Display* /* dpy */,
- Window /* win */,
- int* /* deviceid */
+ Display* dpy,
+ Window win,
+ int* deviceid
);
extern int XISelectEvent(
- Display* /* dpy */,
- Window /* win */,
- XIDeviceEventMask* /* masks*/,
- int /* nmasks */
+ Display* dpy,
+ Window win,
+ XIDeviceEventMask* masks,
+ int nmasks
);
extern Status XIQueryVersion(
- Display* /* dpy */,
- int* /* major_version_return */,
- int* /* minor_version_return*/
+ Display* dpy,
+ int* major_version_return,
+ int* minor_version_return
);
extern XIDeviceInfo* XIQueryDevice(
- Display* /* dpy */,
- int /* deviceid */,
- int* /* ndevices_return */
+ Display* dpy,
+ int deviceid,
+ int* ndevices_return
);
extern void XIFreeDeviceInfo(XIDeviceInfo *info);