diff options
author | Ian Osgood <iano@quirkster.com> | 2006-09-26 08:21:26 -0700 |
---|---|---|
committer | Ian Osgood <iano@quirkster.com> | 2006-09-26 08:21:26 -0700 |
commit | 36df8f570fe4f164e5ce2b3348aa18354bc73ead (patch) | |
tree | 71c62a196397a961399b695c1be6150c1320ecc4 /atom | |
parent | 7413b7781257815f13eba9bc0567dd208fadfeaa (diff) |
Naming changes must go into m4 files.
Diffstat (limited to 'atom')
-rw-r--r-- | atom/atoms.gperf.m4 | 2 | ||||
-rw-r--r-- | atom/xcb_atom.h.m4 | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/atom/atoms.gperf.m4 b/atom/atoms.gperf.m4 index 9a4e889..5c433be 100644 --- a/atom/atoms.gperf.m4 +++ b/atom/atoms.gperf.m4 @@ -1,5 +1,5 @@ %{ -#include <X11/XCB/xcb.h> +#include <xcb/xcb.h> #include <stdlib.h> #include "xcb_atom.h" diff --git a/atom/xcb_atom.h.m4 b/atom/xcb_atom.h.m4 index b5f0f5d..6ea81d3 100644 --- a/atom/xcb_atom.h.m4 +++ b/atom/xcb_atom.h.m4 @@ -11,14 +11,14 @@ typedef struct { xcb_intern_atom_cookie_t cookie; xcb_atom_t atom; } u; -} InternAtomFastCookie; +} intern_atom_fast_cookie_t; -xcb_atom_t InternAtomPredefined(uint16_t name_len, const char *name); -InternAtomFastCookie InternAtomFast(xcb_connection_t *c, uint8_t only_if_exists, uint16_t name_len, const char *name); -xcb_atom_t InternAtomFastReply(xcb_connection_t *c, InternAtomFastCookie cookie, xcb_generic_error_t **e); +xcb_atom_t intern_atom_predefined(uint16_t name_len, const char *name); +intern_atom_fast_cookie_t intern_atom_fast(xcb_connection_t *c, uint8_t only_if_exists, uint16_t name_len, const char *name); +xcb_atom_t intern_atom_fast_reply(xcb_connection_t *c, intern_atom_fast_cookie_t cookie, xcb_generic_error_t **e); -const char *GetAtomNamePredefined(xcb_atom_t atom); -int GetAtomName(xcb_connection_t *c, xcb_atom_t atom, const char **namep, int *lengthp); +const char *get_atom_name_predefined(xcb_atom_t atom); +int get_atom_name(xcb_connection_t *c, xcb_atom_t atom, const char **namep, int *lengthp); define(`DO', `extern const xcb_atom_t $1;')dnl include(atomlist.m4)`'dnl |