summaryrefslogtreecommitdiff
path: root/include/libnsfb.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.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.h')
-rw-r--r--include/libnsfb.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/include/libnsfb.h b/include/libnsfb.h
index 3236ea5..c125ead 100644
--- a/include/libnsfb.h
+++ b/include/libnsfb.h
@@ -1,3 +1,13 @@
+/*
+ * Copyright 2009 Vincent Sanders <vince@simtec.co.uk>
+ *
+ * This file is part of libnsfb, http://www.netsurf-browser.org/
+ * Licenced under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ *
+ * This is the exported interface for the libnsfb graphics library.
+ */
+
#ifndef _LIBNSFB_H
#define _LIBNSFB_H 1
@@ -23,7 +33,7 @@ enum nsfb_frontend_e {
NSFB_FRONTEND_LINUX, /**< Linux frontend */
NSFB_FRONTEND_VNC, /**< VNC frontend */
NSFB_FRONTEND_ABLE, /**< ABLE frontend */
- NSFB_FRONTEND_RAM, /**< RAM frontend */
+ NSFB_FRONTEND_RAM /**< RAM frontend */
};
/** Initialise nsfb context.
@@ -56,10 +66,6 @@ int nsfb_init_frontend(nsfb_t *nsfb);
*/
enum nsfb_frontend_e nsfb_frontend_from_name(const char *name);
-/** Process input from a frontend.
- */
-bool nsfb_input(nsfb_t *nsfb, nsfb_event_t *event, int timeout);
-
/** Claim an area of screen to be redrawn.
*
* Informs the nsfb library that an area of screen will be updated by the user