1: #include <X/mit-copyright.h> 2: 3: /* $Header: XQueryMouse.c,v 10.4 86/02/01 15:39:02 tony Rel $ */ 4: /* Copyright Massachusetts Institute of Technology 1985 */ 5: 6: #include "XlibInternal.h" 7: Status XQueryMouse (w, x, y, subw) 8: Window w; 9: Window *subw; 10: int *x, *y; 11: { 12: register Display *dpy; 13: register XReq *req; 14: XRep rep; 15: 16: GetReq(X_QueryMouse, w); 17: if (!_XReply(dpy, &rep)) 18: return (0); 19: *x = rep.param.s[2]; 20: *y = rep.param.s[3]; 21: *subw = rep.param.l[0]; 22: return (1); 23: }