Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Interfaces.h « SyncClock « misc « filters « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d23d2075847528ba4740740df5bcc4cb76a7362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

const IID IID_ISyncClock = {0xa62888fb, 0x8e37, 0x44d2, {0x88, 0x50, 0xb3, 0xe3, 0xf2, 0xc1, 0x16, 0x9f}};

MIDL_INTERFACE("A62888FB-8E37-44d2-8850-B3E3F2C1169F")
ISyncClock:
public IUnknown
{
public:
    virtual HRESULT STDMETHODCALLTYPE AdjustClock(DOUBLE adjustment) = 0;
    virtual HRESULT STDMETHODCALLTYPE SetBias(DOUBLE bias) = 0;
    virtual HRESULT STDMETHODCALLTYPE GetBias(DOUBLE *bias) = 0;
    virtual HRESULT STDMETHODCALLTYPE GetStartTime(REFERENCE_TIME *startTime);
};