summaryrefslogtreecommitdiff
path: root/xc/lib/XIE/events.c
diff options
context:
space:
mode:
authordawes <dawes>2001-08-23 21:35:13 +0000
committerdawes <dawes>2001-08-23 21:35:13 +0000
commit72321c2675a95767303f4b478c9e39e4c2176e20 (patch)
tree0b68e472635ba00c18ccf074b7d7dc2c1cb41610 /xc/lib/XIE/events.c
parent34d7432dc114643d77fcea1abad791f0956bede8 (diff)
Remove client-side libraries not needed for the DRI components.
Diffstat (limited to 'xc/lib/XIE/events.c')
-rw-r--r--xc/lib/XIE/events.c160
1 files changed, 0 insertions, 160 deletions
diff --git a/xc/lib/XIE/events.c b/xc/lib/XIE/events.c
deleted file mode 100644
index 0c27b1113..000000000
--- a/xc/lib/XIE/events.c
+++ /dev/null
@@ -1,160 +0,0 @@
-/* $TOG: events.c /main/7 1998/02/06 15:12:05 kaleb $ */
-
-/*
-
-Copyright 1993, 1994, 1998 The Open Group
-
-All Rights Reserved.
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
-OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
-ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.
-
-Except as contained in this notice, the name of The Open Group shall
-not be used in advertising or otherwise to promote the sale, use or
-other dealings in this Software without prior written authorization
-from The Open Group.
-
-*/
-/* $XFree86: xc/lib/XIE/events.c,v 1.3 1999/06/13 16:18:09 dawes Exp $ */
-
-#define NEED_EVENTS /* so xEvent will get pulled in */
-#include "XIElibint.h"
-
-
-Status
-_XieColorAllocEvent (
- Display *display,
- XEvent *host,
- xEvent *wire)
-{
- XieColorAllocEvent *host_event = (XieColorAllocEvent *) host;
- xieColorAllocEvn *wire_event = (xieColorAllocEvn *) wire;
-
- host_event->type = wire_event->event & 0x7f;
- host_event->serial = wire_event->sequenceNum;
- host_event->send_event = (wire_event->event & 0x80) != 0;
- host_event->display = display;
- host_event->name_space = wire_event->instanceNameSpace;
- host_event->time = wire_event->time;
- host_event->flo_id = wire_event->instanceFloID;
- host_event->src = wire_event->src;
- host_event->elem_type = wire_event->type;
- host_event->color_list = wire_event->colorList;
- host_event->color_alloc_technique = wire_event->colorAllocTechnique;
- host_event->color_alloc_data = wire_event->data;
-
- return (True);
-}
-
-
-Status
-_XieDecodeNotifyEvent (
- Display *display,
- XEvent *host,
- xEvent *wire)
-{
- XieDecodeNotifyEvent *host_event = (XieDecodeNotifyEvent *) host;
- xieDecodeNotifyEvn *wire_event = (xieDecodeNotifyEvn *) wire;
-
- host_event->type = wire_event->event & 0x7f;
- host_event->serial = wire_event->sequenceNum;
- host_event->send_event = (wire_event->event & 0x80) != 0;
- host_event->display = display;
- host_event->name_space = wire_event->instanceNameSpace;
- host_event->time = wire_event->time;
- host_event->flo_id = wire_event->instanceFloID;
- host_event->src = wire_event->src;
- host_event->elem_type = wire_event->type;
- host_event->decode_technique = wire_event->decodeTechnique;
- host_event->aborted = wire_event->aborted;
- host_event->band_number = wire_event->bandNumber;
- host_event->width = wire_event->width;
- host_event->height = wire_event->height;
-
- return (True);
-}
-
-
-Status
-_XieExportAvailableEvent (
- Display *display,
- XEvent *host,
- xEvent *wire)
-{
- XieExportAvailableEvent *host_event = (XieExportAvailableEvent *) host;
- xieExportAvailableEvn *wire_event = (xieExportAvailableEvn *) wire;
-
- host_event->type = wire_event->event & 0x7f;
- host_event->serial = wire_event->sequenceNum;
- host_event->send_event = (wire_event->event & 0x80) != 0;
- host_event->display = display;
- host_event->name_space = wire_event->instanceNameSpace;
- host_event->time = wire_event->time;
- host_event->flo_id = wire_event->instanceFloID;
- host_event->src = wire_event->src;
- host_event->elem_type = wire_event->type;
- host_event->band_number = wire_event->bandNumber;
- host_event->data[0] = wire_event->data0;
- host_event->data[1] = wire_event->data1;
- host_event->data[2] = wire_event->data2;
-
- return (True);
-}
-
-
-Status
-_XieImportObscuredEvent (
- Display *display,
- XEvent *host,
- xEvent *wire)
-{
- XieImportObscuredEvent *host_event = (XieImportObscuredEvent *) host;
- xieImportObscuredEvn *wire_event = (xieImportObscuredEvn *) wire;
-
- host_event->type = wire_event->event & 0x7f;
- host_event->serial = wire_event->sequenceNum;
- host_event->send_event = (wire_event->event & 0x80) != 0;
- host_event->display = display;
- host_event->name_space = wire_event->instanceNameSpace;
- host_event->time = wire_event->time;
- host_event->flo_id = wire_event->instanceFloID;
- host_event->src = wire_event->src;
- host_event->elem_type = wire_event->type;
- host_event->window = wire_event->window;
- host_event->x = wire_event->x;
- host_event->y = wire_event->y;
- host_event->width = wire_event->width;
- host_event->height = wire_event->height;
-
- return (True);
-}
-
-
-Status
-_XiePhotofloDoneEvent (
- Display *display,
- XEvent *host,
- xEvent *wire)
-{
- XiePhotofloDoneEvent *host_event = (XiePhotofloDoneEvent *) host;
- xiePhotofloDoneEvn *wire_event = (xiePhotofloDoneEvn *) wire;
-
- host_event->type = wire_event->event & 0x7f;
- host_event->serial = wire_event->sequenceNum;
- host_event->send_event = (wire_event->event & 0x80) != 0;
- host_event->display = display;
- host_event->name_space = wire_event->instanceNameSpace;
- host_event->time = wire_event->time;
- host_event->flo_id = wire_event->instanceFloID;
- host_event->outcome = wire_event->outcome;
-
- return (True);
-}