📄 xgrpointer.c
字号:
/* $XConsortium: XGrPointer.c,v 11.17 91/01/06 11:46:26 rws Exp $ *//* Copyright Massachusetts Institute of Technology 1986 *//*Permission to use, copy, modify, distribute, and sell this software and itsdocumentation for any purpose is hereby granted without fee, provided thatthe above copyright notice appear in all copies and that both thatcopyright notice and this permission notice appear in supportingdocumentation, and that the name of M.I.T. not be used in advertising orpublicity pertaining to distribution of the software without specific,written prior permission. M.I.T. makes no representations about thesuitability of this software for any purpose. It is provided "as is"without express or implied warranty.*/#define NEED_REPLIES#include "Xlibint.h"int XGrabPointer(dpy, grab_window, owner_events, event_mask, pointer_mode, keyboard_mode, confine_to, curs, time)register Display *dpy;Window grab_window;Bool owner_events;unsigned int event_mask; /* CARD16 */int pointer_mode, keyboard_mode;Window confine_to;Cursor curs;Time time;{ xGrabPointerReply rep; register xGrabPointerReq *req; register int status; LockDisplay(dpy); GetReq(GrabPointer, req); req->grabWindow = grab_window; req->ownerEvents = owner_events; req->eventMask = event_mask; req->pointerMode = pointer_mode; req->keyboardMode = keyboard_mode; req->confineTo = confine_to; req->cursor = curs; req->time = time; /* if we ever return, suppress the error */ if (_XReply (dpy, (xReply *) &rep, 0, xTrue) == 0) rep.status = GrabSuccess; status = rep.status; UnlockDisplay(dpy); SyncHandle(); return (status);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -