Split the dmusic interfaces.
[wine] / dlls / dmusic / collection.c
1 /* IDirectMusicCollection Implementation
2  *
3  * Copyright (C) 2003 Rok Mandeljc
4  *
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.
9  *
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  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Library General Public License for more details.
14  *
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.
18  */
19
20 #include "windef.h"
21 #include "winbase.h"
22 #include "winuser.h"
23 #include "wingdi.h"
24 #include "wine/debug.h"
25
26 #include "dmusic_private.h"
27
28 WINE_DEFAULT_DEBUG_CHANNEL(dmusic);
29
30 /* IDirectMusicCollection IUnknown parts follow: */
31 HRESULT WINAPI IDirectMusicCollectionImpl_QueryInterface (LPDIRECTMUSICCOLLECTION iface, REFIID riid, LPVOID *ppobj)
32 {
33         ICOM_THIS(IDirectMusicCollectionImpl,iface);
34
35         if (IsEqualGUID(riid, &IID_IUnknown) || IsEqualGUID(riid, &IID_IDirectMusicCollection))
36         {
37                 IDirectMusicCollectionImpl_AddRef(iface);
38                 *ppobj = This;
39                 return S_OK;
40         }
41         WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppobj);
42         return E_NOINTERFACE;
43 }
44
45 ULONG WINAPI IDirectMusicCollectionImpl_AddRef (LPDIRECTMUSICCOLLECTION iface)
46 {
47         ICOM_THIS(IDirectMusicCollectionImpl,iface);
48         TRACE("(%p) : AddRef from %ld\n", This, This->ref);
49         return ++(This->ref);
50 }
51
52 ULONG WINAPI IDirectMusicCollectionImpl_Release (LPDIRECTMUSICCOLLECTION iface)
53 {
54         ICOM_THIS(IDirectMusicCollectionImpl,iface);
55         ULONG ref = --This->ref;
56         TRACE("(%p) : ReleaseRef to %ld\n", This, This->ref);
57         if (ref == 0)
58         {
59                 HeapFree(GetProcessHeap(), 0, This);
60         }
61         return ref;
62 }
63
64 /* IDirectMusicCollection Interface follow: */
65 HRESULT WINAPI IDirectMusicCollectionImpl_GetInstrument (LPDIRECTMUSICCOLLECTION iface, DWORD dwPatch, IDirectMusicInstrument** ppInstrument)
66 {
67         ICOM_THIS(IDirectMusicCollectionImpl,iface);
68
69         FIXME("(%p, %ld, %p): stub\n", This, dwPatch, ppInstrument);
70
71         return S_OK;
72 }
73
74 HRESULT WINAPI IDirectMusicCollectionImpl_EnumInstrument (LPDIRECTMUSICCOLLECTION iface, DWORD dwIndex, DWORD* pdwPatch, LPWSTR pwszName, DWORD dwNameLen)
75 {
76         ICOM_THIS(IDirectMusicCollectionImpl,iface);
77
78         FIXME("(%p, %ld, %p, %p, %ld): stub\n", This, dwIndex, pdwPatch, pwszName, dwNameLen);
79
80         return S_OK;
81 }
82
83 ICOM_VTABLE(IDirectMusicCollection) DirectMusicCollection_Vtbl =
84 {
85     ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
86         IDirectMusicCollectionImpl_QueryInterface,
87         IDirectMusicCollectionImpl_AddRef,
88         IDirectMusicCollectionImpl_Release,
89         IDirectMusicCollectionImpl_GetInstrument,
90         IDirectMusicCollectionImpl_EnumInstrument
91 };
92
93 /* for ClassFactory */
94 HRESULT WINAPI DMUSIC_CreateDirectMusicCollection (LPCGUID lpcGUID, LPDIRECTMUSICCOLLECTION* ppDMColl, LPUNKNOWN pUnkOuter)
95 {
96         if (IsEqualGUID (lpcGUID, &IID_IDirectMusicCollection))
97         {
98                 FIXME("Not yet\n");
99                 return E_NOINTERFACE;
100         }
101         WARN("No interface found\n");
102         
103         return E_NOINTERFACE;   
104 }