Added support for implementing VxDs as separate dlls and loading them
[wine.git] / dlls / dmusic / clock.c
blob85cea5a44cd33b91f2910c3a5ee116eadc54a94c
1 /* IReferenceClock Implementation
3 * Copyright (C) 2003-2004 Rok Mandeljc
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILIY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Library General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #include "dmusic_private.h"
22 WINE_DEFAULT_DEBUG_CHANNEL(dmusic);
24 /* IReferenceClockImpl IUnknown part: */
25 HRESULT WINAPI IReferenceClockImpl_QueryInterface (IReferenceClock *iface, REFIID riid, LPVOID *ppobj) {
26 ICOM_THIS(IReferenceClockImpl,iface);
28 if (IsEqualIID (riid, &IID_IUnknown) ||
29 IsEqualIID (riid, &IID_IReferenceClock)) {
30 IReferenceClockImpl_AddRef(iface);
31 *ppobj = This;
32 return S_OK;
34 WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
35 return E_NOINTERFACE;
38 ULONG WINAPI IReferenceClockImpl_AddRef (IReferenceClock *iface) {
39 ICOM_THIS(IReferenceClockImpl,iface);
40 TRACE("(%p) : AddRef from %ld\n", This, This->ref);
41 return ++(This->ref);
44 ULONG WINAPI IReferenceClockImpl_Release (IReferenceClock *iface) {
45 ICOM_THIS(IReferenceClockImpl,iface);
46 ULONG ref = --This->ref;
47 TRACE("(%p) : ReleaseRef to %ld\n", This, This->ref);
48 if (ref == 0) {
49 HeapFree(GetProcessHeap(), 0, This);
51 return ref;
54 /* IReferenceClockImpl IReferenceClock part: */
55 HRESULT WINAPI IReferenceClockImpl_GetTime (IReferenceClock *iface, REFERENCE_TIME* pTime) {
56 ICOM_THIS(IReferenceClockImpl,iface);
57 TRACE("(%p, %p)\n", This, pTime);
58 *pTime = This->rtTime;
59 return S_OK;
62 HRESULT WINAPI IReferenceClockImpl_AdviseTime (IReferenceClock *iface, REFERENCE_TIME baseTime, REFERENCE_TIME streamTime, HANDLE hEvent, DWORD* pdwAdviseCookie) {
63 ICOM_THIS(IReferenceClockImpl,iface);
64 FIXME("(%p, %lli, %lli, %p, %p): stub\n", This, baseTime, streamTime, hEvent, pdwAdviseCookie);
65 return S_OK;
68 HRESULT WINAPI IReferenceClockImpl_AdvisePeriodic (IReferenceClock *iface, REFERENCE_TIME startTime, REFERENCE_TIME periodTime, HANDLE hSemaphore, DWORD* pdwAdviseCookie) {
69 ICOM_THIS(IReferenceClockImpl,iface);
70 FIXME("(%p, %lli, %lli, %p, %p): stub\n", This, startTime, periodTime, hSemaphore, pdwAdviseCookie);
71 return S_OK;
74 HRESULT WINAPI IReferenceClockImpl_Unadvise (IReferenceClock *iface, DWORD dwAdviseCookie) {
75 ICOM_THIS(IReferenceClockImpl,iface);
76 FIXME("(%p, %ld): stub\n", This, dwAdviseCookie);
77 return S_OK;
80 ICOM_VTABLE(IReferenceClock) ReferenceClock_Vtbl = {
81 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
82 IReferenceClockImpl_QueryInterface,
83 IReferenceClockImpl_AddRef,
84 IReferenceClockImpl_Release,
85 IReferenceClockImpl_GetTime,
86 IReferenceClockImpl_AdviseTime,
87 IReferenceClockImpl_AdvisePeriodic,
88 IReferenceClockImpl_Unadvise
91 /* for ClassFactory */
92 HRESULT WINAPI DMUSIC_CreateReferenceClockImpl (LPCGUID lpcGUID, LPVOID* ppobj, LPUNKNOWN pUnkOuter) {
93 IReferenceClockImpl* clock;
95 clock = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IReferenceClockImpl));
96 if (NULL == clock) {
97 *ppobj = NULL;
98 return E_OUTOFMEMORY;
100 clock->lpVtbl = &ReferenceClock_Vtbl;
101 clock->ref = 0; /* will be inited by QueryInterface */
102 clock->rtTime = 0;
103 clock->pClockInfo.dwSize = sizeof (DMUS_CLOCKINFO);
105 return IReferenceClockImpl_QueryInterface ((IReferenceClock *)clock, lpcGUID, ppobj);