|
|
1.1 ! root 1: #include <X/mit-copyright.h> ! 2: ! 3: /* $Header: XPixmapGetXY.c,v 10.6 86/04/22 15:19:40 jg Rel $ */ ! 4: /* Copyright Massachusetts Institute of Technology 1985 */ ! 5: ! 6: #include "XlibInternal.h" ! 7: Status XPixmapGetXY (w, x, y, width, height, data) ! 8: Window w; ! 9: int x, y, width, height; ! 10: short *data; ! 11: { ! 12: register Display *dpy; ! 13: register XReq *req; ! 14: XRep rep; ! 15: ! 16: GetReq (X_PixmapGet, w); ! 17: req->func = XYFormat; ! 18: req->params0 = height; ! 19: req->params1 = width; ! 20: req->params2 = x; ! 21: req->params3 = y; ! 22: if (!_XReply (dpy, &rep)) ! 23: return(0); ! 24: _XReadPad (dpy, (char *)data, XYPixmapSize (width, height, dpy->dplanes)); ! 25: return (1); ! 26: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.