diff options
author | Julien Danjou <julien@danjou.info> | 2008-09-16 17:11:40 +0200 |
---|---|---|
committer | Arnaud Fontaine <arnau@debian.org> | 2010-11-14 19:50:37 +0900 |
commit | 23b1626b4972c234a12200c46aa416846d8f9fb7 (patch) | |
tree | 4486b28752b17fea2c5beeebc34a64432cb57cf4 | |
parent | 612dc375bfbf5d92da31b0d4e24bd96a539be0f0 (diff) |
doc: enable doxygen doc in various submodule
Signed-off-by: Julien Danjou <julien@danjou.info>
-rw-r--r-- | Doxyfile | 6 | ||||
-rw-r--r-- | event/xcb_event.h | 12 |
2 files changed, 17 insertions, 1 deletions
@@ -484,7 +484,11 @@ WARN_LOGFILE = # with spaces. INPUT = xcb_util_intro \ - image/ + event/ \ + icccm/ \ + image/ \ + property/ \ + reply/ # This tag can be used to specify the character encoding of the source files that # doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default diff --git a/event/xcb_event.h b/event/xcb_event.h index 2e57bd6..8750dee 100644 --- a/event/xcb_event.h +++ b/event/xcb_event.h @@ -26,6 +26,14 @@ * prior written authorization from the authors. */ +/** + * @defgroup xcb__event_t XCB Event Functions + * + * These functions ease the handling of X events received. + * + * @{ + */ + #ifndef __XCB_EVENT_H__ #define __XCB_EVENT_H__ @@ -155,4 +163,8 @@ XCB_EVENT_MAKE_EVENT_HANDLER(mapping_notify, MAPPING_NOTIFY) } #endif +/** + * @} + */ + #endif /* __XCB_EVENT_H__ */ |