openalbridge/wrappers.h
changeset 2213 bd51bbf06033
parent 2212 6b5da1a2765a
child 2257 7eb31efcfb9b
--- a/openalbridge/wrappers.h	Mon Jun 29 23:03:25 2009 +0000
+++ b/openalbridge/wrappers.h	Tue Jun 30 12:31:32 2009 +0000
@@ -16,17 +16,22 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+#ifndef _OALB_WRAPPERS_H
+#define _OALB_WRAPPERS_H
+
 #include "globals.h"
 
-#pragma once
 
 void *Malloc (size_t nbytes);
+void *Realloc (void *aptr, size_t nbytes);
 FILE *Fopen (const char *fname, char *mode);
 ALint AlGetError (const char *str);
 #ifndef _WIN32
 void *helper_fadein (void *tmp);
 void *helper_fadeout (void *tmp); 
 #else
-void WINAPI helper_fadein (void *tmp); 
-void WINAPI helper_fadeout (void *tmp); 	
-#endif
\ No newline at end of file
+void *helper_fadein (void *tmp); 
+void *helper_fadeout (void *tmp); 	
+#endif
+
+#endif /*_OALB_WRAPPERS_H*/