snddma_null.c 308 B

1234567891011121314151617181920212223242526272829
  1. // snddma_null.c
  2. // all other sound mixing is portable
  3. #include "../client/client.h"
  4. #include "../client/snd_loc.h"
  5. qboolean SNDDMA_Init(void)
  6. {
  7. return false;
  8. }
  9. int SNDDMA_GetDMAPos(void)
  10. {
  11. return 0;
  12. }
  13. void SNDDMA_Shutdown(void)
  14. {
  15. }
  16. void SNDDMA_BeginPainting (void)
  17. {
  18. }
  19. void SNDDMA_Submit(void)
  20. {
  21. }