Make XA Audio play

This commit is contained in:
Jaby
2022-08-09 15:37:28 +02:00
committed by Jaby
parent 817abeb173
commit 96f600fd95
6 changed files with 146 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
#ifndef XAAUDIO_H
#define XAAUDIO_H
#include <STDDEF.H>
#include <LIBCD.H>
namespace XAAudio
{
void enable(bool doubleSpeed);
void disable();
void play(const CdlLOC &file, int channel);
CdlLOC locate(const char* fileName);
}
#endif // !XAAUDIO_H