6527f9711cae56d1da17b4b7314d4e10c40a39ee
[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 int XGrabPointer(Display *display, Window grab_window,
38                 Bool owner_events, unsigned int event_mask,
39                 int pointer_mode, int keyboard_mode,
40                 Window confine_to, Cursor cursor, Time time)
41 {
42   (void) display;
43   (void) grab_window;
44   (void) owner_events;
45   (void) event_mask;
46   (void) pointer_mode;
47   (void) keyboard_mode;
48   (void) confine_to;
49   (void) cursor;
50   (void) time;
51
52   return GrabSuccess;
53 }