mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-18 18:21:38 +00:00
7b0104e9a1
git-svn-id: https://svn.eduke32.com/eduke32@452 1a8010ca-5511-0410-912e-c29ae57300e0
42 lines
454 B
C++
Executable file
42 lines
454 B
C++
Executable file
#define JFAUD_INTERNAL
|
|
#include "cda_null.hpp"
|
|
|
|
CDA_Null::CDA_Null(const char *name)
|
|
{
|
|
|
|
}
|
|
|
|
CDA_Null::~CDA_Null()
|
|
{
|
|
}
|
|
|
|
bool CDA_Null::IsValid() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool CDA_Null::PlayTrack(int n)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool CDA_Null::Pause()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool CDA_Null::Resume()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
JFAudCDA::State CDA_Null::CheckDisc()
|
|
{
|
|
return JFAudCDA::NOT_READY;
|
|
}
|
|
|
|
JFAudCDA::State CDA_Null::GetPlayMode()
|
|
{
|
|
return JFAudCDA::NOT_READY;
|
|
}
|
|
|