summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-06-18 17:26:36 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2013-06-18 17:26:36 +0100
commita642cab1b7eab0f68f00835ec463bc4b8270995f (patch)
tree4579d4501204bb435c7171ae3ec621257ef05ab6 /desktop
parent146fea758f664a93380ed25f8273fb4940634aee (diff)
downloadnetsurf-a642cab1b7eab0f68f00835ec463bc4b8270995f.tar.gz
netsurf-a642cab1b7eab0f68f00835ec463bc4b8270995f.tar.bz2
Point at header for exported function commentary.
Diffstat (limited to 'desktop')
-rw-r--r--desktop/global_history.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/desktop/global_history.c b/desktop/global_history.c
index d159c5063..e32f2baed 100644
--- a/desktop/global_history.c
+++ b/desktop/global_history.c
@@ -580,13 +580,8 @@ struct treeview_callback_table tree_cb_t = {
.entry = global_history_tree_node_entry_cb
};
-/**
- * Initialises the global history module.
- *
- * \param
- * \param
- * \return true on success, false on memory exhaustion
- */
+
+/* Exported interface, documented in global_history.h */
nserror global_history_init(struct core_window_callback_table *cw_t,
void *core_window_handle)
{
@@ -666,12 +661,16 @@ nserror global_history_fini(void)
return NSERROR_OK;
}
+
+/* Exported interface, documented in global_history.h */
void global_history_redraw(int x, int y, struct rect *clip,
const struct redraw_context *ctx)
{
treeview_redraw(gh_ctx.tree, x, y, clip, ctx);
}
+
+/* Exported interface, documented in global_history.h */
void global_history_mouse_action(browser_mouse_state mouse, int x, int y)
{
treeview_mouse_action(gh_ctx.tree, mouse, x, y);