1 /* IDirectMusicThru Implementation
3 * Copyright (C) 2003 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.
24 #include "wine/debug.h"
26 #include "dmusic_private.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(dmusic);
30 /* IDirectMusicThru IUnknown parts follow: */
31 HRESULT WINAPI IDirectMusicThruImpl_QueryInterface (LPDIRECTMUSICTHRU iface, REFIID riid, LPVOID *ppobj)
33 ICOM_THIS(IDirectMusicThruImpl,iface);
35 if (IsEqualIID (riid, &IID_IUnknown) ||
36 IsEqualIID (riid, &IID_IDirectMusicThru)) {
37 IDirectMusicThruImpl_AddRef(iface);
42 WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
46 ULONG WINAPI IDirectMusicThruImpl_AddRef (LPDIRECTMUSICTHRU iface)
48 ICOM_THIS(IDirectMusicThruImpl,iface);
49 TRACE("(%p) : AddRef from %ld\n", This, This->ref);
53 ULONG WINAPI IDirectMusicThruImpl_Release (LPDIRECTMUSICTHRU iface)
55 ICOM_THIS(IDirectMusicThruImpl,iface);
56 ULONG ref = --This->ref;
57 TRACE("(%p) : ReleaseRef to %ld\n", This, This->ref);
59 HeapFree(GetProcessHeap(), 0, This);
64 /* IDirectMusicThru Interface follow: */
65 HRESULT WINAPI IDirectMusicThruImpl_ThruChannel (LPDIRECTMUSICTHRU iface, DWORD dwSourceChannelGroup, DWORD dwSourceChannel, DWORD dwDestinationChannelGroup, DWORD dwDestinationChannel, LPDIRECTMUSICPORT pDestinationPort)
67 ICOM_THIS(IDirectMusicThruImpl,iface);
69 FIXME("(%p, %ld, %ld, %ld, %ld, %p): stub\n", This, dwSourceChannelGroup, dwSourceChannel, dwDestinationChannelGroup, dwDestinationChannel, pDestinationPort);
74 ICOM_VTABLE(IDirectMusicThru) DirectMusicThru_Vtbl =
76 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
77 IDirectMusicThruImpl_QueryInterface,
78 IDirectMusicThruImpl_AddRef,
79 IDirectMusicThruImpl_Release,
80 IDirectMusicThruImpl_ThruChannel
83 /* for ClassFactory */
84 HRESULT WINAPI DMUSIC_CreateDirectMusicThru (LPCGUID lpcGUID, LPDIRECTMUSICTHRU* ppDMThru, LPUNKNOWN pUnkOuter)
86 if (IsEqualIID (lpcGUID, &IID_IDirectMusicThru))
92 WARN("No interface found\n");