summaryrefslogtreecommitdiff
path: root/apps/buffering.h
diff options
context:
space:
mode:
authorSteve Bavin <pondlife@pondlife.me>2008-03-26 08:57:25 +0000
committerSteve Bavin <pondlife@pondlife.me>2008-03-26 08:57:25 +0000
commit73f9863b1be9f31c8c18813b512c3504a7adfebc (patch)
tree11d6a566834835ccb61cd031dceeaee60751d37a /apps/buffering.h
parenta92b9e65f7e4a3ce804811624f445ee3c2015f57 (diff)
More consts that require no functional change.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16814 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/buffering.h')
-rw-r--r--apps/buffering.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/apps/buffering.h b/apps/buffering.h
index bc61ec5e6d..abe8f608c6 100644
--- a/apps/buffering.h
+++ b/apps/buffering.h
@@ -56,7 +56,7 @@ enum callback_event {
void buffering_init(void);
/* Reset the buffering system */
-bool buffering_reset(char *buf, size_t buflen);
+bool buffering_reset(char *buf, const size_t buflen);
/***************************************************************************
@@ -80,15 +80,15 @@ bool buffering_reset(char *buf, size_t buflen);
#define BUF_MAX_HANDLES 256
-int bufopen(const char *file, size_t offset, enum data_type type);
-int bufalloc(const void *src, size_t size, enum data_type type);
-bool bufclose(int handle_id);
-int bufseek(int handle_id, size_t newpos);
-int bufadvance(int handle_id, off_t offset);
-ssize_t bufread(int handle_id, size_t size, void *dest);
-ssize_t bufgetdata(int handle_id, size_t size, void **data);
-ssize_t bufgettail(int handle_id, size_t size, void **data);
-ssize_t bufcuttail(int handle_id, size_t size);
+int bufopen(const char *file, size_t offset, const enum data_type type);
+int bufalloc(const void *src, const size_t size, const enum data_type type);
+bool bufclose(const int handle_id);
+int bufseek(const int handle_id, const size_t newpos);
+int bufadvance(const int handle_id, const off_t offset);
+ssize_t bufread(const int handle_id, size_t size, void *dest);
+ssize_t bufgetdata(const int handle_id, size_t size, void **data);
+ssize_t bufgettail(const int handle_id, const size_t size, void **data);
+ssize_t bufcuttail(const int handle_id, size_t size);
/***************************************************************************
@@ -102,10 +102,10 @@ ssize_t bufcuttail(int handle_id, size_t size);
* buf_used: Total amount of buffer space used (including allocated space)
****************************************************************************/
-ssize_t buf_get_offset(int handle_id, void *ptr);
-ssize_t buf_handle_offset(int handle_id);
-void buf_request_buffer_handle(int handle_id);
-void buf_set_base_handle(int handle_id);
+ssize_t buf_get_offset(const int handle_id, void *ptr);
+ssize_t buf_handle_offset(const int handle_id);
+void buf_request_buffer_handle(const int handle_id);
+void buf_set_base_handle(const int handle_id);
size_t buf_used(void);
@@ -123,9 +123,9 @@ size_t buf_used(void);
****************************************************************************/
#define MAX_BUF_CALLBACKS 4
-typedef void (*buffering_callback)(enum callback_event ev, int value);
-bool register_buffering_callback(buffering_callback func);
-void unregister_buffering_callback(buffering_callback func);
+typedef void (*buffering_callback)(const enum callback_event ev, const int value);
+bool register_buffering_callback(const buffering_callback func);
+void unregister_buffering_callback(const buffering_callback func);
/* Settings */
enum {