|
|
researchv9-SUN3(old)
#include "copyright.h"
/* $Header: /var/lib/cvsd/repos/research/researchv9/X11/src/X.V11R1/lib/X/XQuPntr.c,v 1.1.1.1 2018/04/24 17:22:00 root Exp $ */
/* Copyright Massachusetts Institute of Technology 1986 */
#define NEED_REPLIES
#include "Xlibint.h"
Bool XQueryPointer(dpy, w, root, child, root_x, root_y, win_x, win_y, mask)
register Display *dpy;
Window w, *root, *child;
int *root_x, *root_y, *win_x, *win_y;
unsigned int *mask;
{
xQueryPointerReply rep;
xResourceReq *req;
LockDisplay(dpy);
GetResReq(QueryPointer, w, req);
if (_XReply (dpy, (xReply *)&rep, 0, xTrue) == 0) {
UnlockDisplay(dpy);
SyncHandle();
return(False);
}
*root = rep.root;
*child = rep.child;
*root_x = rep.rootX;
*root_y = rep.rootY;
*win_x = rep.winX;
*win_y = rep.winY;
*mask = rep.mask;
UnlockDisplay(dpy);
SyncHandle();
return (rep.sameScreen);
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.