]> git.sesse.net Git - vlc/blob - modules/video_output/xcb/xcb_vlc.h
XCB key press handling
[vlc] / modules / video_output / xcb / xcb_vlc.h
1 /**
2  * @file xcb_vlc.h
3  * @brief X C Bindings VLC module common header
4  */
5 /*****************************************************************************
6  * Copyright © 2009 Rémi Denis-Courmont
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2.0
11  * of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21  ****************************************************************************/
22
23 int CheckError (vout_thread_t *, const char *str, xcb_void_cookie_t);
24 int ProcessEvent (vout_thread_t *, xcb_generic_event_t *);
25
26 typedef struct key_handler_t key_handler_t;
27 key_handler_t *CreateKeyHandler (vlc_object_t *, xcb_connection_t *);
28 void DestroyKeyHandler (key_handler_t *);
29 int ProcessKeyEvent (key_handler_t *, xcb_generic_event_t *);