|
|
1.1 ! root 1: #include "copyright.h" ! 2: ! 3: /* $Header: XUngrabKey.c,v 11.5 87/09/11 08:08:01 toddb Exp $ */ ! 4: /* Copyright Massachusetts Institute of Technology 1986 */ ! 5: ! 6: #include "Xlibint.h" ! 7: ! 8: XUngrabKey(dpy, key, modifiers, grab_window) ! 9: register Display *dpy; ! 10: int key; ! 11: unsigned int modifiers; ! 12: Window grab_window; ! 13: ! 14: { ! 15: register xUngrabKeyReq *req; ! 16: ! 17: LockDisplay(dpy); ! 18: GetReq(UngrabKey, req); ! 19: req->grabWindow = grab_window; ! 20: req->modifiers = modifiers; ! 21: req->key = key; ! 22: UnlockDisplay(dpy); ! 23: SyncHandle(); ! 24: } ! 25: ! 26: ! 27:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.