Added XChangeActivePointerGrab().
[XGrabControl.git] / grab-replacement.c
1 /*
2   grab-replacement.c, part of XGrabControl.
3   (c) 2011, en passant development.
4
5   XGrabControl is free software: you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation, either version 3 of the License, or
8   (at your option) any later version.
9
10   XGrabControl is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14
15   You should have received a copy of the GNU General Public License
16   along with XGrabControl.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 #include <sys/types.h>
20 #include <X11/Xlib.h>
21
22
23 int XGrabKeyboard(Display *display, Window grab_window,
24                   Bool owner_events, int pointer_mode,
25                   int keyboard_mode, Time time)
26 {
27   (void) display;
28   (void) grab_window;
29   (void) owner_events;
30   (void) pointer_mode;
31   (void) keyboard_mode;
32   (void) time;
33
34   return GrabSuccess;
35 }
36
37
38 int XGrabPointer(Display *display, Window grab_window,
39                 Bool owner_events, unsigned int event_mask,
40                 int pointer_mode, int keyboard_mode,
41                 Window confine_to, Cursor cursor, Time time)
42 {
43   (void) display;
44   (void) grab_window;
45   (void) owner_events;
46   (void) event_mask;
47   (void) pointer_mode;
48   (void) keyboard_mode;
49   (void) confine_to;
50   (void) cursor;
51   (void) time;
52
53   return GrabSuccess;
54 }
55
56 int XChangeActivePointerGrab(Display *display, unsigned int event_mask,
57                             Cursor cursor, Time time)
58 {
59   (void) display;
60   (void) event_mask;
61   (void) cursor;
62   (void) time;
63
64   return GrabSuccess;
65 }