summaryrefslogtreecommitdiff
path: root/include/hubbub/types.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-01-08 19:38:36 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-01-08 19:38:36 +0000
commit5a8784817cc0ff505a502d20e6eb6975ef281d15 (patch)
tree899dff475bfc40c3dcc72bf4808a0859752a8dbe /include/hubbub/types.h
parent024709d09ec4dbf301588258360fa9891c17000e (diff)
downloadlibhubbub-5a8784817cc0ff505a502d20e6eb6975ef281d15.tar.gz
libhubbub-5a8784817cc0ff505a502d20e6eb6975ef281d15.tar.bz2
Use doxygen to create API documentation.
Add a bunch of extra commentary to stop doxygen warning. svn path=/trunk/hubbub/; revision=5994
Diffstat (limited to 'include/hubbub/types.h')
-rw-r--r--include/hubbub/types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hubbub/types.h b/include/hubbub/types.h
index 07ef2ab..b2f3670 100644
--- a/include/hubbub/types.h
+++ b/include/hubbub/types.h
@@ -112,7 +112,7 @@ typedef struct hubbub_tag {
* Token data
*/
typedef struct hubbub_token {
- hubbub_token_type type;
+ hubbub_token_type type; /**< The token type */
union {
hubbub_doctype doctype;
@@ -122,7 +122,7 @@ typedef struct hubbub_token {
hubbub_string comment;
hubbub_string character;
- } data;
+ } data; /**< Type-specific data */
} hubbub_token;
#endif