diff options
Diffstat (limited to 'xc/lib/X11/ChActPGb.c')
-rw-r--r-- | xc/lib/X11/ChActPGb.c | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/xc/lib/X11/ChActPGb.c b/xc/lib/X11/ChActPGb.c deleted file mode 100644 index 271d5e8fd..000000000 --- a/xc/lib/X11/ChActPGb.c +++ /dev/null @@ -1,44 +0,0 @@ -/* $TOG: ChActPGb.c /main/6 1998/02/06 17:05:07 kaleb $ */ -/* - -Copyright 1986, 1998 The Open Group - -All Rights Reserved. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. - -*/ -/* $XFree86: xc/lib/X11/ChActPGb.c,v 1.2 1999/05/09 10:48:59 dawes Exp $ */ - -#include "Xlibint.h" - -int -XChangeActivePointerGrab(dpy, event_mask, curs, time) -register Display *dpy; -unsigned int event_mask; /* CARD16 */ -Cursor curs; -Time time; -{ - register xChangeActivePointerGrabReq *req; - - LockDisplay(dpy); - GetReq(ChangeActivePointerGrab, req); - req->eventMask = event_mask; - req->cursor = curs; - req->time = time; - UnlockDisplay(dpy); - SyncHandle(); - return 1; -} |