1
1
mirror of https://github.com/bitgapp/eqMac.git synced 2024-11-30 03:35:04 +03:00
eqMac/native/driver/Source/EQM_WrappedAudioEngine.cpp
2020-04-04 19:15:38 +01:00

30 lines
502 B
C++

//
// EQM_WrappedAudioEngine.cpp
// EQMDriver
//
//
// Self Include
#include "EQM_WrappedAudioEngine.h"
// TODO: Register to be notified when the IO Registry values for these change so we can cache them
UInt64 EQM_WrappedAudioEngine::GetSampleRate() const
{
return 0;
}
kern_return_t EQM_WrappedAudioEngine::SetSampleRate(Float64 inNewSampleRate)
{
#pragma unused (inNewSampleRate)
return 0;
}
UInt32 EQM_WrappedAudioEngine::GetSampleBufferFrameSize() const
{
return 0;
}