diff Isolated/ALmixer_RWops.c @ 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
line wrap: on
line diff
--- a/Isolated/ALmixer_RWops.c	Tue May 29 19:41:59 2012 -0700
+++ b/Isolated/ALmixer_RWops.c	Tue May 29 19:43:23 2012 -0700
@@ -8,7 +8,7 @@
 
 /* (Note this is different than stdio's seek. This returns ftell.)
  */
-static int stdio_seek(ALmixer_RWops* the_context, long offset, int whence)
+static long stdio_seek(ALmixer_RWops* the_context, long offset, int whence)
 {
 	if(0 == fseek(the_context->hidden.stdio.fp, offset, whence))
 	{