#include /* $Header: XStorePixmapZ.c,v 10.4 86/02/01 15:40:29 tony Rel $ */ /* Copyright Massachusetts Institute of Technology 1985 */ #include "XlibInternal.h" Pixmap XStorePixmapZ (width, height, data) int width, height; caddr_t data; { register Display *dpy; register XReq *req; XRep rep; int len; GetReq(X_StorePixmap, 0); req->func = ZFormat; req->param.s[0] = height; req->param.s[1] = width; len = (dpy->dplanes > 8) ? WZPixmapSize (width, height) : BZPixmapSize (width, height); Data (dpy, data, len); if (!_XReply(dpy, &rep)) return(NULL); return (rep.param.l[0]); }