|
|
1.1 root 1: #include "copyright.h"
2:
3: /* $Header: XMapRaised.c,v 1.6 87/09/11 08:05:02 toddb Exp $ */
4: /* Copyright Massachusetts Institute of Technology 1986 */
5:
6: #include "Xlibint.h"
7:
8: XMapRaised (dpy, w)
9: Window w;
10: register Display *dpy;
11: {
12: register xConfigureWindowReq *req;
13: register xResourceReq *req2;
14: LockDisplay(dpy);
15: GetReqExtra(ConfigureWindow, 4, req);
16: req->window = w;
17: req->mask = CWStackMode;
18: * (unsigned long *) (req + 1) = Above;
19: GetResReq (MapWindow, w, req2);
20: UnlockDisplay(dpy);
21: SyncHandle();
22: }
23:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.