soloudminiaudio.bmx 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ' Copyright (c) 2016-2022 Bruce A Henderson
  2. '
  3. ' This software is provided 'as-is', without any express or implied
  4. ' warranty. In no event will the authors be held liable for any damages
  5. ' arising from the use of this software.
  6. '
  7. ' Permission is granted to anyone to use this software for any purpose,
  8. ' including commercial applications, and to alter it and redistribute it
  9. ' freely, subject to the following restrictions:
  10. '
  11. ' 1. The origin of this software must not be misrepresented; you must not
  12. ' claim that you wrote the original software. If you use this software
  13. ' in a product, an acknowledgment in the product documentation would be
  14. ' appreciated but is not required.
  15. '
  16. ' 2. Altered source versions must be plainly marked as such, and must not be
  17. ' misrepresented as being the original software.
  18. '
  19. ' 3. This notice may not be removed or altered from any source
  20. ' distribution.
  21. '
  22. SuperStrict
  23. Module Audio.SoloudMiniAudio
  24. ModuleInfo "Version: 1.00"
  25. ModuleInfo "License: zlib/libpng"
  26. ModuleInfo "Copyright: SoLoud - 2013-2020 Jari Komppa"
  27. ModuleInfo "Copyright: Wrapper - 2016-2020 Bruce A Henderson"
  28. ModuleInfo "History: 1.00"
  29. ModuleInfo "History: Initial Release."
  30. ?win32x86
  31. ModuleInfo "CC_OPTS: -msse2"
  32. ?win32x64
  33. ModuleInfo "CC_OPTS: -msse3"
  34. ?linuxx86
  35. ModuleInfo "CC_OPTS: -msse2"
  36. ?linuxx64
  37. ModuleInfo "CC_OPTS: -msse3"
  38. ?
  39. ModuleInfo "CC_OPTS: -DWITH_SDL2_STATIC"
  40. ModuleInfo "CC_OPTS: -DWITH_MINIAUDIO"
  41. ModuleInfo "CC_OPTS: -DMA_NO_WAV"
  42. Import "common.bmx"
  43. Function MiniAudioInit(backend:EMaBackend)
  44. bmx_soloud_miniaudio_context_init(backend)
  45. End Function
  46. Private
  47. Extern
  48. Function bmx_soloud_miniaudio_context_init(backend:EMaBackend)
  49. End Extern