|
|
1.1 ! root 1: #include <X/mit-copyright.h> ! 2: ! 3: /* $Header: XPixFill.c,v 10.5 86/04/22 15:18:31 jg Rel $ */ ! 4: /* Copyright Massachusetts Institute of Technology 1985 */ ! 5: ! 6: #include "XlibInternal.h" ! 7: XPixFill (w, x, y, width, height, pixel, clipmask, func, planes) ! 8: Window w; ! 9: int x, y; ! 10: int pixel; ! 11: int width, height; ! 12: Bitmap clipmask; ! 13: int func, planes; ! 14: { ! 15: register Display *dpy; ! 16: register XReq *req; ! 17: ! 18: GetReq(X_PixFill, w); ! 19: req->mask = planes; ! 20: req->func = func; ! 21: req->params0 = height; ! 22: req->params1 = width; ! 23: req->params2 = x; ! 24: req->params3 = y; ! 25: req->paramu4 = pixel; ! 26: req->param.l[3] = clipmask; ! 27: } ! 28:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.