AppleWin/source/linux/windows/dmusicc.cpp
Andrea Odetti 04ef0bf377 Compile SoundCore from AW.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2020-07-01 18:48:41 +01:00

17 lines
383 B
C++

#include "linux/windows/dmusicc.h"
#include "linux/windows/winerror.h"
HRESULT IReferenceClock::GetTime(REFERENCE_TIME *pTime)
{
return S_OK;
}
HRESULT IReferenceClock::AdvisePeriodic(REFERENCE_TIME startTime, REFERENCE_TIME periodTime, HSEMAPHORE hSemaphore, DWORD *pdwAdviseCookie)
{
return S_OK;
}
HRESULT IReferenceClock::Unadvise(DWORD dwAdviseCookie)
{
return S_OK;
}