AppleWin/source/linux/libwindows/dmusicc.h
Andrea Odetti 76317c2df1 libwindows: a very tiny step towards compilation of libretro with VS.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2021-11-28 18:49:17 +00:00

13 lines
370 B
C

#pragma once
#include "winbase.h"
#include "winhandles.h"
#include "guiddef.h"
typedef LONGLONG REFERENCE_TIME;
struct IReferenceClock : public IUnknown
{
HRESULT GetTime(REFERENCE_TIME *pTime);
HRESULT AdvisePeriodic(REFERENCE_TIME startTime, REFERENCE_TIME periodTime, HSEMAPHORE hSemaphore, DWORD *pdwAdviseCookie);
HRESULT Unadvise(DWORD dwAdviseCookie);
};