From 0f3db39f79300a8354812050cf15e3e060e71442 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Fri, 4 Dec 2009 11:12:07 +0000 Subject: Improve cursor handling Improve screen copy handling and API svn path=/trunk/libnsfb/; revision=9714 --- include/frontend.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/frontend.h') 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; -- cgit v1.2.3