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