summaryrefslogtreecommitdiff
path: root/include/cursor.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/cursor.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/cursor.h')
-rw-r--r--include/cursor.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/cursor.h b/include/cursor.h
index d22d5e6..e3a8a04 100644
--- a/include/cursor.h
+++ b/include/cursor.h
@@ -30,7 +30,10 @@ struct nsfb_cursor_s {
};
-/** plot the cursor saving the image underneath. */
+/** Plot the cursor saving the image underneath. */
bool nsfb_cursor_plot(nsfb_t *nsfb, struct nsfb_cursor_s *cursor);
+/** Clear the cursor restoring the image underneath */
+bool nsfb_cursor_clear(nsfb_t *nsfb, struct nsfb_cursor_s *cursor);
+
#endif /* CURSOR_H */