summaryrefslogtreecommitdiff
path: root/desktop/netsurf.h
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/netsurf.h')
-rw-r--r--desktop/netsurf.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/desktop/netsurf.h b/desktop/netsurf.h
index 45a445747..3ce8f3bab 100644
--- a/desktop/netsurf.h
+++ b/desktop/netsurf.h
@@ -16,18 +16,24 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+/**
+ * \file
+ *
+ * NetSurf core interface registration, construction and destruction.
+ */
+
#ifndef _NETSURF_DESKTOP_NETSURF_H_
#define _NETSURF_DESKTOP_NETSURF_H_
#include "utils/errors.h"
-
-struct netsurf_table;
+#include "desktop/gui_table.h"
/**
* Register operation table.
*
* @param table NetSurf operations table.
- * @return NSERROR_OK on success or error code on faliure.
+ * @return NSERROR_OK on success or error code on faliure. On faliure
+ * global table will not be initialised.
*/
nserror netsurf_register(struct netsurf_table *table);