[Xcb-commit] src

Josh Triplett josh at kemper.freedesktop.org
Sat Oct 7 13:17:01 PDT 2006


 src/xcb.h    |    5 +++++
 src/xcbext.h |    5 -----
 2 files changed, 5 insertions(+), 5 deletions(-)

New commits:
diff-tree 9e10819a678970928c9f9a1fffb4ba00f5ac7c57 (from b9e49b2a47e7388e20f8a5c009cdaf0b369e117c)
Author: Josh Triplett <josh at freedesktop.org>
Date:   Sat Oct 7 13:16:43 2006 -0700

    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.

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
 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);
+
+
 /**
  * @}
  */
diff --git a/src/xcbext.h b/src/xcbext.h
index 4824660..01dd590 100644
--- a/src/xcbext.h
+++ b/src/xcbext.h
@@ -66,11 +66,6 @@ void *xcb_wait_for_reply(xcb_connection_
 int xcb_poll_for_reply(xcb_connection_t *c, unsigned int request, void **reply, xcb_generic_error_t **error);
 
 
-/* xcb_xid.c */
-
-uint32_t xcb_generate_id(xcb_connection_t *c);
-
-
 /* xcb_util.c */
 
 int xcb_popcount(uint32_t mask);


More information about the xcb-commit mailing list