Make the DllRegisterServer, DllRegisterServerEx, DllUnregisterServer,
[wine/wine64.git] / dlls / dmusic / portdownload.c
blob27cd463b342c8188bae224fdb0a5db9ad3301fd5
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 (IsEqualGUID(riid, &IID_IUnknown) || IsEqualGUID(riid, &IID_IDirectMusicPortDownload))
37 IDirectMusicPortDownloadImpl_AddRef(iface);
38 *ppobj = This;
39 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)
59 HeapFree(GetProcessHeap(), 0, This);
61 return ref;
64 /* IDirectMusicPortDownload Interface follow: */
65 HRESULT WINAPI IDirectMusicPortDownloadImpl_GetBuffer (LPDIRECTMUSICPORTDOWNLOAD iface, DWORD dwDLId, IDirectMusicDownload** ppIDMDownload)
67 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
69 FIXME("(%p, %ld, %p): stub\n", This, dwDLId, ppIDMDownload);
71 return S_OK;
74 HRESULT WINAPI IDirectMusicPortDownloadImpl_AllocateBuffer (LPDIRECTMUSICPORTDOWNLOAD iface, DWORD dwSize, IDirectMusicDownload** ppIDMDownload)
76 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
78 FIXME("(%p, %ld, %p): stub\n", This, dwSize, ppIDMDownload);
80 return S_OK;
83 HRESULT WINAPI IDirectMusicPortDownloadImpl_GetDLId (LPDIRECTMUSICPORTDOWNLOAD iface, DWORD* pdwStartDLId, DWORD dwCount)
85 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
87 FIXME("(%p, %p, %ld): stub\n", This, pdwStartDLId, dwCount);
89 return S_OK;
92 HRESULT WINAPI IDirectMusicPortDownloadImpl_GetAppend (LPDIRECTMUSICPORTDOWNLOAD iface, DWORD* pdwAppend)
94 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
96 FIXME("(%p, %p): stub\n", This, pdwAppend);
98 return S_OK;
101 HRESULT WINAPI IDirectMusicPortDownloadImpl_Download (LPDIRECTMUSICPORTDOWNLOAD iface, IDirectMusicDownload* pIDMDownload)
103 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
105 FIXME("(%p, %p): stub\n", This, pIDMDownload);
107 return S_OK;
110 HRESULT WINAPI IDirectMusicPortDownloadImpl_Unload (LPDIRECTMUSICPORTDOWNLOAD iface, IDirectMusicDownload* pIDMDownload)
112 ICOM_THIS(IDirectMusicPortDownloadImpl,iface);
114 FIXME("(%p, %p): stub\n", This, pIDMDownload);
116 return S_OK;
119 ICOM_VTABLE(IDirectMusicPortDownload) DirectMusicPortDownload_Vtbl =
121 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
122 IDirectMusicPortDownloadImpl_QueryInterface,
123 IDirectMusicPortDownloadImpl_AddRef,
124 IDirectMusicPortDownloadImpl_Release,
125 IDirectMusicPortDownloadImpl_GetBuffer,
126 IDirectMusicPortDownloadImpl_AllocateBuffer,
127 IDirectMusicPortDownloadImpl_GetDLId,
128 IDirectMusicPortDownloadImpl_GetAppend,
129 IDirectMusicPortDownloadImpl_Download,
130 IDirectMusicPortDownloadImpl_Unload
133 /* for ClassFactory */
134 HRESULT WINAPI DMUSIC_CreateDirectMusicPortDownload (LPCGUID lpcGUID, LPDIRECTMUSICPORTDOWNLOAD* ppDMPortDL, LPUNKNOWN pUnkOuter)
136 if (IsEqualGUID (lpcGUID, &IID_IDirectMusicPortDownload))
138 FIXME("Not yet\n");
139 return E_NOINTERFACE;
141 WARN("No interface found\n");
143 return E_NOINTERFACE;