xutil: fix proto of key mask translator
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
f168bbdfa4
commit
5db54fc731
|
@ -95,7 +95,7 @@ xutil_error_handler_catch_all_set(xcb_event_handlers_t *evenths,
|
||||||
xcb_event_set_error_handler(evenths, err_num, handler, data);
|
xcb_event_set_error_handler(evenths, err_num, handler, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
xcb_keysym_t
|
uint16_t
|
||||||
xutil_key_mask_fromstr(const char *keyname, size_t len)
|
xutil_key_mask_fromstr(const char *keyname, size_t len)
|
||||||
{
|
{
|
||||||
switch(a_tokenize(keyname, len))
|
switch(a_tokenize(keyname, len))
|
||||||
|
|
|
@ -38,7 +38,7 @@ bool xutil_text_prop_get(xcb_connection_t *, xcb_window_t, xcb_atom_t, char **,
|
||||||
void xutil_error_handler_catch_all_set(xcb_event_handlers_t *,
|
void xutil_error_handler_catch_all_set(xcb_event_handlers_t *,
|
||||||
xcb_generic_error_handler_t, void *);
|
xcb_generic_error_handler_t, void *);
|
||||||
|
|
||||||
xcb_keysym_t xutil_key_mask_fromstr(const char *, size_t);
|
uint16_t xutil_key_mask_fromstr(const char *, size_t);
|
||||||
unsigned int xutil_button_fromint(int);
|
unsigned int xutil_button_fromint(int);
|
||||||
|
|
||||||
/* Get the informations about the screen.
|
/* Get the informations about the screen.
|
||||||
|
|
Loading…
Reference in New Issue