|
|
1.1 root 1: #include "copyright.h"
2:
3: /* $Header: XClearArea.c,v 11.7 87/09/11 08:02:04 toddb Exp $ */
4: /* Copyright Massachusetts Institute of Technology 1986 */
5:
6: #include "Xlibint.h"
7:
8: XClearArea (dpy, w, x, y, width, height, exposures)
9: register Display *dpy;
10: Window w;
11: int x, y;
12: unsigned int width, height;
13: Bool exposures;
14: {
15: register xClearAreaReq *req;
16:
17: LockDisplay(dpy);
18: GetReq(ClearArea, req);
19: req->window = w;
20: req->x = x;
21: req->y = y;
22: req->width = width;
23: req->height = height;
24: req->exposures = exposures;
25: UnlockDisplay(dpy);
26: SyncHandle();
27: }
28:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.