alu.h 420 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef __alu_h_
  2. #define __alu_h_
  3. #ifdef _WIN32
  4. #define ALAPI __declspec(dllexport)
  5. #define ALAPIENTRY __cdecl
  6. #else /* _WIN32 */
  7. #define ALAPI
  8. #define ALAPIENTRY
  9. #define AL_CALLBACK
  10. #endif /* _WIN32 */
  11. #include <AL/al.h>
  12. #include <AL/alutypes.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. #ifndef AL_NO_PROTOTYPES
  17. #else
  18. #endif /* AL_NO_PROTOTYPES */
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22. #endif /* __alu_h_ */