Initial commit.
[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, Bool owner_events, int pointer_mode, int keyboard_mode, Time time)
24 {
25   (void) display;
26   (void) grab_window;
27   (void) owner_events;
28   (void) pointer_mode;
29   (void) keyboard_mode;
30   (void) time;
31
32   return GrabSuccess;
33 }