summaryrefslogtreecommitdiff
path: root/desktop/gui_factory.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2014-01-16 13:24:14 +0000
committerVincent Sanders <vince@netsurf-browser.org>2014-01-16 13:24:14 +0000
commita2247a75a3dab9d583617299a88d0e76c923f83b (patch)
treed74ec3acc0d024d10e8dd5dce14c80516bf489af /desktop/gui_factory.h
parentd47fed45245ddcecfb69d1e951ce627bdb6a44ff (diff)
downloadnetsurf-a2247a75a3dab9d583617299a88d0e76c923f83b.tar.gz
netsurf-a2247a75a3dab9d583617299a88d0e76c923f83b.tar.bz2
cleanup copyright headers and some doc comments
Diffstat (limited to 'desktop/gui_factory.h')
-rw-r--r--desktop/gui_factory.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/desktop/gui_factory.h b/desktop/gui_factory.h
index 50b5eb31e..dc94b3a16 100644
--- a/desktop/gui_factory.h
+++ b/desktop/gui_factory.h
@@ -25,8 +25,15 @@
#include "desktop/gui.h"
-extern struct gui_table *guit; /* the gui vtable */
+/** The global operation table */
+extern struct gui_table *guit;
+/** register and verify global operation table
+ *
+ * @param gt The global table to register
+ * @return NSERROR_OK on success or error code on faliure. On faliure
+ * global table will not be initialised
+ */
nserror gui_factory_register(struct gui_table *gt);
#endif