summaryrefslogtreecommitdiff
path: root/include/frontend.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2009-12-04 11:12:07 +0000
committerVincent Sanders <vince@netsurf-browser.org>2009-12-04 11:12:07 +0000
commit0f3db39f79300a8354812050cf15e3e060e71442 (patch)
treef93bb8c724130c95108b392cb2bffda956ec3849 /include/frontend.h
parent936196d9965a1c75c015f915169dadd8ea64f35e (diff)
downloadlibnsfb-0f3db39f79300a8354812050cf15e3e060e71442.tar.gz
libnsfb-0f3db39f79300a8354812050cf15e3e060e71442.tar.bz2
Improve cursor handling
Improve screen copy handling and API svn path=/trunk/libnsfb/; revision=9714
Diffstat (limited to 'include/frontend.h')
-rw-r--r--include/frontend.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/frontend.h b/include/frontend.h
index bf6fee6..f477996 100644
--- a/include/frontend.h
+++ b/include/frontend.h
@@ -15,8 +15,8 @@ typedef int (nsfb_fendfn_geometry_t)(nsfb_t *nsfb, int width, int height, int bp
typedef bool (nsfb_fendfn_input_t)(nsfb_t *nsfb, nsfb_event_t *event, int timeout);
/* frontend area claim */
typedef int (nsfb_fendfn_claim_t)(nsfb_t *nsfb, nsfb_bbox_t *box);
-/* frontend area release */
-typedef int (nsfb_fendfn_release_t)(nsfb_t *nsfb, nsfb_bbox_t *box);
+/* frontend area update */
+typedef int (nsfb_fendfn_update_t)(nsfb_t *nsfb, nsfb_bbox_t *box);
/* frontend cursor display */
typedef int (nsfb_fendfn_cursor_t)(nsfb_t *nsfb, struct nsfb_cursor_s *cursor);
@@ -27,7 +27,7 @@ typedef struct nsfb_frontend_rtns_s {
nsfb_fendfn_geometry_t *geometry;
nsfb_fendfn_input_t *input;
nsfb_fendfn_claim_t *claim;
- nsfb_fendfn_release_t *release;
+ nsfb_fendfn_update_t *update;
nsfb_fendfn_cursor_t *cursor;
} nsfb_frontend_rtns_t;