summaryrefslogtreecommitdiff
path: root/desktop/gui.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-10-13 01:18:19 +0100
committerVincent Sanders <vince@kyllikki.org>2014-10-13 01:18:19 +0100
commitbfc7552d8dcc0c737c8282280c4a3f71cf58aed4 (patch)
tree9cae952ac46a45743aebbf4a47f8f7ce77070bd4 /desktop/gui.h
parentd0655bafc26d30f0e792202ff452907a5ff193d1 (diff)
downloadnetsurf-bfc7552d8dcc0c737c8282280c4a3f71cf58aed4.tar.gz
netsurf-bfc7552d8dcc0c737c8282280c4a3f71cf58aed4.tar.bz2
remove netsurf_poll callback and netsurf main loop
Diffstat (limited to 'desktop/gui.h')
-rw-r--r--desktop/gui.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/desktop/gui.h b/desktop/gui.h
index 4dc638c39..528f0c6d0 100644
--- a/desktop/gui.h
+++ b/desktop/gui.h
@@ -466,12 +466,6 @@ struct gui_browser_table {
/* Mandantory entries */
/**
- * called to let the frontend update its state and run any
- * I/O operations.
- */
- void (*poll)(bool active);
-
- /**
* Schedule a callback.
*
* \param t interval before the callback should be made in ms or
@@ -491,7 +485,9 @@ struct gui_browser_table {
/* Optional entries */
- /** called to allow the gui to cleanup */
+ /**
+ * called to allow the gui to cleanup.
+ */
void (*quit)(void);
/**