added everything

This commit is contained in:
Metario
2017-04-17 06:17:10 -06:00
commit 9c6ff74f19
6121 changed files with 1625704 additions and 0 deletions

53
lib/openal/OpenBSD/AL/alut.h Executable file
View File

@@ -0,0 +1,53 @@
#ifndef _ALUT_H_
#define _ALUT_H_
#include <AL/altypes.h>
#include <AL/aluttypes.h>
#ifdef _WIN32
#define ALAPI __declspec(dllexport)
#define ALAPIENTRY __cdecl
#define AL_CALLBACK
#else /* _WIN32 */
#define ALAPI
#define ALAPIENTRY
#define AL_CALLBACK
#endif /* _WIN32 */
#ifdef __cplusplus
extern "C" {
#endif
#ifndef AL_NO_PROTOTYPES
ALAPI void ALAPIENTRY alutInit(int *argc, char *argv[]);
ALAPI void ALAPIENTRY alutExit(ALvoid);
ALAPI ALboolean ALAPIENTRY alutLoadWAV( const char *fname,
ALvoid **wave,
ALsizei *format,
ALsizei *size,
ALsizei *bits,
ALsizei *freq );
#else
//
// void (*alutInit)(int *argc, char *argv[]);
// void (*alutExit)(ALvoid);
//
// ALboolean (*alutLoadWAV)( const char *fname,
// ALvoid **wave,
// ALsizei *format,
// ALsizei *size,
// ALsizei *bits,
// ALsizei *freq );
//
//
#endif /* AL_NO_PROTOTYPES */
#ifdef __cplusplus
}
#endif
#endif