|
|
BSD 4.3
#include <X/mit-copyright.h>
/* $Header: /var/lib/cvsd/repos/CSRG/43BSD/contrib/X/Xlib/XCreatTranss.c,v 1.1.1.1 2018/04/24 16:12:54 root Exp $ */
/* Copyright Massachusetts Institute of Technology 1985 */
#include "XlibInternal.h"
int XCreateTransparencies (parent, defs, ndefs)
Window parent;
TransparentFrame defs[];
int ndefs;
{
register Display *dpy;
register int i;
register TransparentFrame *frame = defs;
int nresult = 0;
for (i=0;i<ndefs;i++) {
register XReq *req;
GetReq(X_CreateTransparency, parent);
req->param.s[0] = frame->height;
req->param.s[1] = frame->width;
req->param.s[2] = frame->x;
req->param.s[3] = (frame++)->y;
}
/* Reset request number to its old value, so that
error packets are processed correctly. */
dpy->request -= ndefs;
frame = defs;
for (i=0;i<ndefs;i++) {
XRep rep;
/* Increment request number so error packets
are processed correctly. */
dpy->request++;
if (!_XReply(dpy, &rep))
(frame++)->self = NULL;
else {
(frame++)->self = rep.param.l[0];
nresult++;
}
}
return (nresult);
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.