summaryrefslogtreecommitdiffstats
path: root/make/stub_includes/openal/alut.h
diff options
context:
space:
mode:
authorXerxes Rånby <[email protected]>2013-01-25 15:21:29 +0100
committerXerxes Rånby <[email protected]>2013-01-25 15:21:29 +0100
commit338e0d5aa881b11bbc8c4c71183fe81e1d1492ff (patch)
tree4eb648a9cbc606853de517074e0375d3d02e8540 /make/stub_includes/openal/alut.h
parentac0bf7253b20444058eb6be590acce528c052eaf (diff)
Delete OpenAL stub_includes/openal headers.
Signed-off-by: Xerxes Rånby <[email protected]>
Diffstat (limited to 'make/stub_includes/openal/alut.h')
-rwxr-xr-xmake/stub_includes/openal/alut.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/make/stub_includes/openal/alut.h b/make/stub_includes/openal/alut.h
deleted file mode 100755
index 7a33ccb..0000000
--- a/make/stub_includes/openal/alut.h
+++ /dev/null
@@ -1,68 +0,0 @@
-#ifndef _AL_ALUT_H
-#define _AL_ALUT_H
-
-#include <al.h>
-
-#if defined(_WIN32) && !defined(_XBOX) && 0
- #if defined (_OPENAL32LIB)
- #define ALUTAPI __declspec(dllexport)
- #else
- #define ALUTAPI __declspec(dllimport)
- #endif
-#else
- #define ALUTAPI extern
-#endif
-
-#if defined(_WIN32)
- #define ALUTAPIENTRY __cdecl
-#else
- #define ALUTAPIENTRY
-#endif
-
-#if TARGET_OS_MAC
- #pragma export on
-#endif
-
-#if defined(__cplusplus)
-extern "C" {
-#endif
-
-#if !defined(ALUT_NO_PROTOTYPES)
-
-ALUTAPI void ALUTAPIENTRY alutInit( int *argc, char *argv[] );
-ALUTAPI void ALUTAPIENTRY alutExit( void );
-
-#if defined(MACINTOSH_AL)
-/* Windows and Linux versions have a loop parameter, Macintosh doesn't */
-ALUTAPI void ALUTAPIENTRY alutLoadWAVFile( const ALbyte *file, ALenum *format, ALvoid **data, ALsizei *size, ALsizei *freq );
-ALUTAPI void ALUTAPIENTRY alutLoadWAVMemory( const ALbyte *memory, ALenum *format, ALvoid **data, ALsizei *size, ALsizei *freq );
-#else
-ALUTAPI void ALUTAPIENTRY alutLoadWAVFile( const ALbyte *file, ALenum *format, ALvoid **data, ALsizei *size, ALsizei *freq, ALboolean *loop );
-ALUTAPI void ALUTAPIENTRY alutLoadWAVMemory( const ALbyte *memory, ALenum *format, ALvoid **data, ALsizei *size, ALsizei *freq, ALboolean *loop );
-#endif
-ALUTAPI void ALUTAPIENTRY alutUnloadWAV( ALenum format, ALvoid *data, ALsizei size, ALsizei freq );
-
-#else /* ALUT_NO_PROTOTYPES */
-
-ALUTAPI void (ALUTAPIENTRY *alutInit)( int *argc, char *argv[] );
-ALUTAPI void (ALUTAPIENTRY *alutExit)( void );
-#if defined(MACINTOSH_AL)
-ALUTAPI void (ALUTAPIENTRY *alutLoadWAVFile)( const ALbyte *file, ALenum *format, ALvoid **data, ALsizei *size, ALsizei *freq );
-ALUTAPI void (ALUTAPIENTRY *alutLoadWAVMemory)( const ALbyte *memory, ALenum *format, ALvoid **data, ALsizei *size, ALsizei *freq );
-#else
-ALUTAPI void (ALUTAPIENTRY *alutLoadWAVFile)( const ALbyte *file, ALenum *format, ALvoid **data, ALsizei *size, ALsizei *freq, ALboolean *loop );
-ALUTAPI void (ALUTAPIENTRY *alutLoadWAVMemory)( const ALbyte *memory, ALenum *format, ALvoid **data, ALsizei *size, ALsizei *freq, ALboolean *loop );
-#endif
-ALUTAPI void (ALUTAPIENTRY *alutUnloadWAV)( ALenum format, ALvoid *data, ALsizei size, ALsizei freq );
-
-#endif /* ALUT_NO_PROTOTYPES */
-
-#if TARGET_OS_MAC
- #pragma export off
-#endif
-
-#if defined(__cplusplus)
-}
-#endif
-
-#endif