summaryrefslogtreecommitdiff
path: root/src/xcb.h
diff options
context:
space:
mode:
authorJosh Triplett <josh@freedesktop.org>2006-10-07 13:16:43 -0700
committerJosh Triplett <josh@freedesktop.org>2006-10-07 13:16:52 -0700
commit9e10819a678970928c9f9a1fffb4ba00f5ac7c57 (patch)
tree106a23c725eb15f6cfecd8e69dcd812441278c8e /src/xcb.h
parentb9e49b2a47e7388e20f8a5c009cdaf0b369e117c (diff)
Move xcb_generate_id from xcbext.h to xcb.h
Since extensions no longer provide type-specific XID-generation functions, xcb_generate_id now forms part of the xcb client API, rather than the extension API; move it from xcbext.h to xcb.h accordingly.
Diffstat (limited to 'src/xcb.h')
-rw-r--r--src/xcb.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/xcb.h b/src/xcb.h
index 4b5b349..eaab47f 100644
--- a/src/xcb.h
+++ b/src/xcb.h
@@ -408,6 +408,11 @@ xcb_connection_t *xcb_connect(const char *displayname, int *screenp);
xcb_connection_t *xcb_connect_to_display_with_auth_info(const char *display, xcb_auth_info_t *auth, int *screen);
+/* xcb_xid.c */
+
+uint32_t xcb_generate_id(xcb_connection_t *c);
+
+
/**
* @}
*/