summaryrefslogtreecommitdiff
path: root/src/tokeniser/tokeniser.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 /src/tokeniser/tokeniser.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 'src/tokeniser/tokeniser.h')
-rw-r--r--src/tokeniser/tokeniser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tokeniser/tokeniser.h b/src/tokeniser/tokeniser.h
index a5bc8de..0ccb7d1 100644
--- a/src/tokeniser/tokeniser.h
+++ b/src/tokeniser/tokeniser.h
@@ -36,18 +36,18 @@ typedef union hubbub_tokeniser_optparams {
struct {
hubbub_token_handler handler;
void *pw;
- } token_handler;
+ } token_handler; /**< Token handling callback */
struct {
hubbub_error_handler handler;
void *pw;
- } error_handler;
+ } error_handler; /**< Error handling callback */
struct {
hubbub_content_model model;
- } content_model;
+ } content_model; /**< Current content model */
- bool process_cdata;
+ bool process_cdata; /**< Whether to process CDATA sections*/
} hubbub_tokeniser_optparams;
/* Create a hubbub tokeniser */