|
|
- #ifndef INPROGEXT_H
- #define INPROGEXT_H
-
- #include "AL/al.h"
- #include "AL/alc.h"
- #include "AL/alext.h"
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- #ifndef AL_SOFT_map_buffer
- #define AL_SOFT_map_buffer 1
- typedef unsigned int ALbitfieldSOFT;
- #define AL_MAP_READ_BIT_SOFT 0x00000001
- #define AL_MAP_WRITE_BIT_SOFT 0x00000002
- #define AL_MAP_PERSISTENT_BIT_SOFT 0x00000004
- #define AL_PRESERVE_DATA_BIT_SOFT 0x00000008
- typedef void (AL_APIENTRY*LPALBUFFERSTORAGESOFT)(ALuint buffer, ALenum format, const ALvoid *data, ALsizei size, ALsizei freq, ALbitfieldSOFT flags);
- typedef void* (AL_APIENTRY*LPALMAPBUFFERSOFT)(ALuint buffer, ALsizei offset, ALsizei length, ALbitfieldSOFT access);
- typedef void (AL_APIENTRY*LPALUNMAPBUFFERSOFT)(ALuint buffer);
- typedef void (AL_APIENTRY*LPALFLUSHMAPPEDBUFFERSOFT)(ALuint buffer, ALsizei offset, ALsizei length);
- #ifdef AL_ALEXT_PROTOTYPES
- AL_API void AL_APIENTRY alBufferStorageSOFT(ALuint buffer, ALenum format, const ALvoid *data, ALsizei size, ALsizei freq, ALbitfieldSOFT flags);
- AL_API void* AL_APIENTRY alMapBufferSOFT(ALuint buffer, ALsizei offset, ALsizei length, ALbitfieldSOFT access);
- AL_API void AL_APIENTRY alUnmapBufferSOFT(ALuint buffer);
- AL_API void AL_APIENTRY alFlushMappedBufferSOFT(ALuint buffer, ALsizei offset, ALsizei length);
- #endif
- #endif
-
- #ifndef AL_SOFT_bformat_hoa
- #define AL_SOFT_bformat_hoa
- #define AL_UNPACK_AMBISONIC_ORDER_SOFT 0x199D
- #endif
-
- #ifndef AL_SOFT_convolution_reverb
- #define AL_SOFT_convolution_reverb
- #define AL_EFFECT_CONVOLUTION_REVERB_SOFT 0xA000
- #define AL_EFFECTSLOT_STATE_SOFT 0x199D
- typedef void (AL_APIENTRY*LPALAUXILIARYEFFECTSLOTPLAYSOFT)(ALuint slotid);
- typedef void (AL_APIENTRY*LPALAUXILIARYEFFECTSLOTPLAYVSOFT)(ALsizei n, const ALuint *slotids);
- typedef void (AL_APIENTRY*LPALAUXILIARYEFFECTSLOTSTOPSOFT)(ALuint slotid);
- typedef void (AL_APIENTRY*LPALAUXILIARYEFFECTSLOTSTOPVSOFT)(ALsizei n, const ALuint *slotids);
- #ifdef AL_ALEXT_PROTOTYPES
- AL_API void AL_APIENTRY alAuxiliaryEffectSlotPlaySOFT(ALuint slotid);
- AL_API void AL_APIENTRY alAuxiliaryEffectSlotPlayvSOFT(ALsizei n, const ALuint *slotids);
- AL_API void AL_APIENTRY alAuxiliaryEffectSlotStopSOFT(ALuint slotid);
- AL_API void AL_APIENTRY alAuxiliaryEffectSlotStopvSOFT(ALsizei n, const ALuint *slotids);
- #endif
- #endif
-
- #ifndef AL_SOFT_hold_on_disconnect
- #define AL_SOFT_hold_on_disconnect
- #define AL_STOP_SOURCES_ON_DISCONNECT_SOFT 0x19AB
- #endif
-
-
- /* Non-standard export. Not part of any extension. */
- AL_API const ALchar* AL_APIENTRY alsoft_get_version(void);
-
-
- /* Functions from abandoned extenions. Only here for binary compatibility. */
- AL_API void AL_APIENTRY alSourceQueueBufferLayersSOFT(ALuint src, ALsizei nb,
- const ALuint *buffers);
-
- AL_API ALint64SOFT AL_APIENTRY alGetInteger64SOFT(ALenum pname);
- AL_API void AL_APIENTRY alGetInteger64vSOFT(ALenum pname, ALint64SOFT *values);
-
- #ifdef __cplusplus
- } /* extern "C" */
- #endif
-
- #endif /* INPROGEXT_H */
|