summaryrefslogtreecommitdiff
path: root/include/libnsfb_event.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2009-04-24 13:42:40 +0000
committerVincent Sanders <vince@netsurf-browser.org>2009-04-24 13:42:40 +0000
commit3d5b21e1473dbdee6c3df66d9ba2a9d657f1b486 (patch)
treef88a339bd1510e9cf5cf1a2a33e345dd8014d513 /include/libnsfb_event.h
parent2b303df06ea14e99e41b118b299bb0bcf58aafd5 (diff)
downloadlibnsfb-3d5b21e1473dbdee6c3df66d9ba2a9d657f1b486.tar.gz
libnsfb-3d5b21e1473dbdee6c3df66d9ba2a9d657f1b486.tar.bz2
add legacy plotter API
svn path=/trunk/libnsfb/; revision=7304
Diffstat (limited to 'include/libnsfb_event.h')
-rw-r--r--include/libnsfb_event.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/libnsfb_event.h b/include/libnsfb_event.h
index 179f24b..0fa275e 100644
--- a/include/libnsfb_event.h
+++ b/include/libnsfb_event.h
@@ -181,3 +181,15 @@ struct nsfb_event_s {
} vector;
} value;
};
+
+/** Process input events.
+ *
+ * Gather events from a frontend.
+ *
+ * @param nsfb The library handle.
+ * @param event The event structure to fill.
+ * @param timeout The number of milliseconds to wait for input, -1 is wait
+ * forever, 0 returns immediately.
+ * @return If the /a event structure is updated true else false.
+ */
+bool nsfb_event(nsfb_t *nsfb, nsfb_event_t *event, int timeout);