Point at header for exported function commentary.

This commit is contained in:
Michael Drake 2013-06-18 17:26:36 +01:00
parent 146fea758f
commit a642cab1b7
1 changed files with 6 additions and 7 deletions

View File

@ -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);