summaryrefslogtreecommitdiff
path: root/desktop/netsurf.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2014-01-10 14:32:29 +0000
committerVincent Sanders <vince@netsurf-browser.org>2014-01-10 14:32:29 +0000
commit277bcec7c6234823390903087dd553c9838c013c (patch)
treecb2e7af25272b3acce344756da5f6bc58c7c341a /desktop/netsurf.h
parentb415c2f9ff8ff4938343237f50c97f31ce6d5a95 (diff)
downloadnetsurf-277bcec7c6234823390903087dd553c9838c013c.tar.gz
netsurf-277bcec7c6234823390903087dd553c9838c013c.tar.bz2
stop system colours being anything to do with frontends
Diffstat (limited to 'desktop/netsurf.h')
-rw-r--r--desktop/netsurf.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/desktop/netsurf.h b/desktop/netsurf.h
index bfdb647ff..aa1796f7c 100644
--- a/desktop/netsurf.h
+++ b/desktop/netsurf.h
@@ -28,8 +28,14 @@ extern const char * const netsurf_version;
extern const int netsurf_version_major;
extern const int netsurf_version_minor;
+/** Initialise netsurf core */
nserror netsurf_init(const char *messages);
-extern void netsurf_exit(void);
+
+/** Run primary event loop */
extern int netsurf_main_loop(void);
+/** finalise NetSurf core */
+extern void netsurf_exit(void);
+
+
#endif