- implemented loader, loader's stream and loading of objects (now you
[wine/wine64.git] / dlls / dmusic / portdownload.c
blobc839dcde8772390b2d2b7d0ab674091ef2f873f0
1 /* IDirectMusicPortDownloadImpl 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 * MERCHANTABILITY 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 "windef.h"
21 #include "winbase.h"
22 #include "winuser.h"
23 #include "wingdi.h"
24 #include "wine/debug.h"
26 #include "dmusic_private.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(dmusic);
30 /* IDirectMusicPortDownload IUnknown parts follow: */
31 HRESULT WINAPI IDirectMusicPortDownloadImpl_QueryInterface (LPDIRECTMUSICPORTDOWNLOAD iface, REFIID riid, LPVOID *ppobj)
33 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
35 if (IsEqualIID (riid, &IID_IUnknown) || IsEqualGUID(riid, &IID_IDirectMusicPortDownload)) {
36 IDirectMusicPortDownloadImpl_AddRef(iface);
37 *ppobj = This;
38 return S_OK;
41 WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppobj);
42 return E_NOINTERFACE;
45 ULONG WINAPI IDirectMusicPortDownloadImpl_AddRef (LPDIRECTMUSICPORTDOWNLOAD iface)
47 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
48 TRACE("(%p) : AddRef from %ld\n", This, This->ref);
49 return ++(This->ref);
52 ULONG WINAPI IDirectMusicPortDownloadImpl_Release (LPDIRECTMUSICPORTDOWNLOAD iface)
54 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
55 ULONG ref = --This->ref;
56 TRACE("(%p) : ReleaseRef to %ld\n", This, This->ref);
57 if (ref == 0) {
58 HeapFree(GetProcessHeap(), 0, This);
60 return ref;
63 /* IDirectMusicPortDownload Interface follow: */
64 HRESULT WINAPI IDirectMusicPortDownloadImpl_GetBuffer (LPDIRECTMUSICPORTDOWNLOAD iface, DWORD dwDLId, IDirectMusicDownload** ppIDMDownload)
66 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
68 FIXME("(%p, %ld, %p): stub\n", This, dwDLId, ppIDMDownload);
70 return S_OK;
73 HRESULT WINAPI IDirectMusicPortDownloadImpl_AllocateBuffer (LPDIRECTMUSICPORTDOWNLOAD iface, DWORD dwSize, IDirectMusicDownload** ppIDMDownload)
75 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
77 FIXME("(%p, %ld, %p): stub\n", This, dwSize, ppIDMDownload);
79 return S_OK;
82 HRESULT WINAPI IDirectMusicPortDownloadImpl_GetDLId (LPDIRECTMUSICPORTDOWNLOAD iface, DWORD* pdwStartDLId, DWORD dwCount)
84 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
86 FIXME("(%p, %p, %ld): stub\n", This, pdwStartDLId, dwCount);
88 return S_OK;
91 HRESULT WINAPI IDirectMusicPortDownloadImpl_GetAppend (LPDIRECTMUSICPORTDOWNLOAD iface, DWORD* pdwAppend)
93 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
95 FIXME("(%p, %p): stub\n", This, pdwAppend);
97 return S_OK;
100 HRESULT WINAPI IDirectMusicPortDownloadImpl_Download (LPDIRECTMUSICPORTDOWNLOAD iface, IDirectMusicDownload* pIDMDownload)
102 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
104 FIXME("(%p, %p): stub\n", This, pIDMDownload);
106 return S_OK;
109 HRESULT WINAPI IDirectMusicPortDownloadImpl_Unload (LPDIRECTMUSICPORTDOWNLOAD iface, IDirectMusicDownload* pIDMDownload)
111 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
113 FIXME("(%p, %p): stub\n", This, pIDMDownload);
115 return S_OK;
118 ICOM_VTABLE(IDirectMusicPortDownload) DirectMusicPortDownload_Vtbl =
120 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
121 IDirectMusicPortDownloadImpl_QueryInterface,
122 IDirectMusicPortDownloadImpl_AddRef,
123 IDirectMusicPortDownloadImpl_Release,
124 IDirectMusicPortDownloadImpl_GetBuffer,
125 IDirectMusicPortDownloadImpl_AllocateBuffer,
126 IDirectMusicPortDownloadImpl_GetDLId,
127 IDirectMusicPortDownloadImpl_GetAppend,
128 IDirectMusicPortDownloadImpl_Download,
129 IDirectMusicPortDownloadImpl_Unload
132 /* for ClassFactory */
133 HRESULT WINAPI DMUSIC_CreateDirectMusicPortDownload (LPCGUID lpcGUID, LPDIRECTMUSICPORTDOWNLOAD* ppDMPortDL, LPUNKNOWN pUnkOuter)
135 if (IsEqualIID (lpcGUID, &IID_IDirectMusicPortDownload))
137 FIXME("Not yet\n");
138 return E_NOINTERFACE;
141 WARN("No interface found\n");
142 return E_NOINTERFACE;