diff options
author | Ian Osgood <iano@quirkster.com> | 2006-10-07 14:09:29 -0700 |
---|---|---|
committer | Ian Osgood <iano@quirkster.com> | 2006-10-07 14:09:29 -0700 |
commit | 7b84d8b650a611d4d76083340e50cb7ea815014d (patch) | |
tree | ce5ef84980b566f2a6d15bc920795e9610bb4004 /src | |
parent | 9e10819a678970928c9f9a1fffb4ba00f5ac7c57 (diff) |
Document xcb_generate_id.
Diffstat (limited to 'src')
-rw-r--r-- | src/xcb.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -410,6 +410,14 @@ xcb_connection_t *xcb_connect_to_display_with_auth_info(const char *display, xcb /* xcb_xid.c */ +/** + * @brief Allocates an XID for a new object. + * @param c: The connection. + * @return A newly allocated XID. + * + * Allocates an XID for a new object. Typically used just prior to + * various object creation functions, such as xcb_create_window. + */ uint32_t xcb_generate_id(xcb_connection_t *c); |