summaryrefslogtreecommitdiff
path: root/xc/lib/Xi
diff options
context:
space:
mode:
authorrws <empty>1994-02-21 11:12:45 +0000
committerrws <empty>1994-02-21 11:12:45 +0000
commitfa5a7d9ca44ce2598500cc07c865fcbbc859f432 (patch)
tree15e6950ca8371844bbeac63039b807fcf141e371 /xc/lib/Xi
parent73bf4832c427855b2ce111d47dd1f181564b8d06 (diff)
XInputEventToWire -> _XiEventToWire
Diffstat (limited to 'xc/lib/Xi')
-rw-r--r--xc/lib/Xi/XExtInt.c6
-rw-r--r--xc/lib/Xi/XExtToWire.c4
-rw-r--r--xc/lib/Xi/XSndExEv.c6
3 files changed, 8 insertions, 8 deletions
diff --git a/xc/lib/Xi/XExtInt.c b/xc/lib/Xi/XExtInt.c
index 9c702d7d8..aad8307fa 100644
--- a/xc/lib/Xi/XExtInt.c
+++ b/xc/lib/Xi/XExtInt.c
@@ -1,4 +1,4 @@
-/* $XConsortium: XExtInt.c,v 1.31 94/02/07 23:49:49 rws Exp $ */
+/* $XConsortium: XExtInt.c,v 1.32 94/02/14 17:38:14 rws Exp $ */
/************************************************************
Copyright (c) 1989 by Hewlett-Packard Company, Palo Alto, California, and the
@@ -47,7 +47,7 @@ static /* const */ char *xinput_extension_name = INAME;
static int XInputClose();
static char *XInputError();
static Bool XInputWireToEvent();
-Status XInputEventToWire();
+Status _XiEventToWire();
static /* const */ XEvent emptyevent;
typedef struct _XInputData
@@ -68,7 +68,7 @@ static /* const */ XExtensionHooks xinput_extension_hooks = {
NULL, /* free_font */
XInputClose, /* close_display */
XInputWireToEvent, /* wire_to_event */
- XInputEventToWire, /* event_to_wire */
+ _XiEventToWire, /* event_to_wire */
NULL, /* error */
XInputError, /* error_string */
};
diff --git a/xc/lib/Xi/XExtToWire.c b/xc/lib/Xi/XExtToWire.c
index 1b15ba517..9f1498942 100644
--- a/xc/lib/Xi/XExtToWire.c
+++ b/xc/lib/Xi/XExtToWire.c
@@ -1,4 +1,4 @@
-/* $XConsortium: XExtToWire.c,v 1.14 92/11/14 12:56:14 rws Exp $ */
+/* $XConsortium: XExtToWire.c,v 1.15 93/09/08 10:23:31 rws Exp $ */
/************************************************************
Copyright (c) 1989 by Hewlett-Packard Company, Palo Alto, California, and the
@@ -38,7 +38,7 @@ SOFTWARE.
#include "extutil.h"
Status
-XInputEventToWire(dpy, re, event, count)
+_XiEventToWire(dpy, re, event, count)
register Display *dpy; /* pointer to display structure */
register XEvent *re; /* pointer to client event */
register xEvent **event; /* wire protocol event */
diff --git a/xc/lib/Xi/XSndExEv.c b/xc/lib/Xi/XSndExEv.c
index a13565ffe..16f0099fa 100644
--- a/xc/lib/Xi/XSndExEv.c
+++ b/xc/lib/Xi/XSndExEv.c
@@ -1,4 +1,4 @@
-/* $XConsortium: XSndExEv.c,v 1.5 89/12/13 20:28:10 rws Exp $ */
+/* $XConsortium: XSndExEv.c,v 1.6 94/02/14 17:39:48 rws Exp $ */
/************************************************************
Copyright (c) 1989 by Hewlett-Packard Company, Palo Alto, California, and the
@@ -36,7 +36,7 @@ SOFTWARE.
#include "XInput.h"
#include "extutil.h"
-extern Status XInputEventToWire();
+extern Status _XiEventToWire();
Status
XSendExtensionEvent (dpy, dev, dest, prop, count, list, event)
@@ -64,7 +64,7 @@ XSendExtensionEvent (dpy, dev, dest, prop, count, list, event)
fp = &dpy->wire_vec[event->type & 0177];
if (*fp == NULL)
- *fp = XInputEventToWire;
+ *fp = _XiEventToWire;
status = (**fp)(dpy, event, &ev, &num_events);
if (status)