diff Isolated/ALmixer_RWops.h @ 56:208a9ed20087

Added explicit symbol visibility markers to audio support files in ALmixer for public headers so they can be built as a dynamic library if needed.
author Eric Wing <ewing@anscamobile.com>
date Tue, 29 May 2012 19:43:23 -0700
parents 71b465ff0622
children 36644b1b940b
line wrap: on
line diff
--- a/Isolated/ALmixer_RWops.h	Tue May 29 19:41:59 2012 -0700
+++ b/Isolated/ALmixer_RWops.h	Tue May 29 19:43:23 2012 -0700
@@ -46,7 +46,7 @@
 		 *  Returns the final offset in the data source.
 		 *  (Note this is different than stdio's seek. This returns ftell.)
 		 */
-		int (ALMIXER_RWOPS_CALL *seek)(struct ALmixer_RWops* the_context, long offset, int whence);
+		long (ALMIXER_RWOPS_CALL *seek)(struct ALmixer_RWops* the_context, long offset, int whence);
 
 		/** Read up to 'nitems' objects each of size 'size' from the data
 		 *  source to the area pointed at by 'ptr'.
@@ -78,8 +78,8 @@
 				struct
 				{
 					void *data;
-					int size;
-					int left;
+					size_t size;
+					size_t left;
 				} buffer;
 			} win32io;
 #endif