quartz: Remove superfluous casts of void pointers to other pointer types.
[wine/multimedia.git] / dlls / quartz / enumregfilters.c
blob2816f08f8661ea96dc0ead47b163380e0ddc23d3
1 /*
2 * Implementation of IEnumRegFilters Interface
4 * Copyright 2004 Christian Costa
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "quartz_private.h"
23 #include "wine/unicode.h"
25 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(quartz);
29 typedef struct IEnumRegFiltersImpl
31 const IEnumRegFiltersVtbl * lpVtbl;
32 LONG refCount;
33 ULONG size;
34 REGFILTER* RegFilters;
35 ULONG uIndex;
36 } IEnumRegFiltersImpl;
38 static const struct IEnumRegFiltersVtbl IEnumRegFiltersImpl_Vtbl;
40 HRESULT IEnumRegFiltersImpl_Construct(REGFILTER* pInRegFilters, const ULONG size, IEnumRegFilters ** ppEnum)
42 IEnumRegFiltersImpl* pEnumRegFilters;
43 REGFILTER* pRegFilters = NULL;
44 unsigned int i;
46 TRACE("(%p, %d, %p)\n", pInRegFilters, size, ppEnum);
48 pEnumRegFilters = CoTaskMemAlloc(sizeof(IEnumRegFiltersImpl));
49 if (!pEnumRegFilters)
51 *ppEnum = NULL;
52 return E_OUTOFMEMORY;
55 /* Accept size of 0 */
56 if (size)
58 pRegFilters = CoTaskMemAlloc(sizeof(REGFILTER)*size);
59 if (!pRegFilters)
61 CoTaskMemFree(pEnumRegFilters);
62 *ppEnum = NULL;
63 return E_OUTOFMEMORY;
67 for(i = 0; i < size; i++)
69 pRegFilters[i].Clsid = pInRegFilters[i].Clsid;
70 pRegFilters[i].Name = CoTaskMemAlloc((strlenW(pInRegFilters[i].Name)+1)*sizeof(WCHAR));
71 if (!pRegFilters[i].Name)
73 while(i)
74 CoTaskMemFree(pRegFilters[--i].Name);
75 CoTaskMemFree(pRegFilters);
76 CoTaskMemFree(pEnumRegFilters);
77 return E_OUTOFMEMORY;
79 CopyMemory(pRegFilters[i].Name, pInRegFilters[i].Name, (strlenW(pInRegFilters[i].Name)+1)*sizeof(WCHAR));
82 pEnumRegFilters->lpVtbl = &IEnumRegFiltersImpl_Vtbl;
83 pEnumRegFilters->refCount = 1;
84 pEnumRegFilters->uIndex = 0;
85 pEnumRegFilters->RegFilters = pRegFilters;
86 pEnumRegFilters->size = size;
88 *ppEnum = (IEnumRegFilters *)(&pEnumRegFilters->lpVtbl);
90 return S_OK;
93 static HRESULT WINAPI IEnumRegFiltersImpl_QueryInterface(IEnumRegFilters * iface, REFIID riid, LPVOID * ppv)
95 TRACE("(%p)->(%s, %p)\n", iface, qzdebugstr_guid(riid), ppv);
97 *ppv = NULL;
99 if (IsEqualIID(riid, &IID_IUnknown))
100 *ppv = (LPVOID)iface;
101 else if (IsEqualIID(riid, &IID_IEnumRegFilters))
102 *ppv = (LPVOID)iface;
104 if (*ppv)
106 IUnknown_AddRef((IUnknown *)(*ppv));
107 return S_OK;
110 FIXME("No interface for %s!\n", qzdebugstr_guid(riid));
112 return E_NOINTERFACE;
115 static ULONG WINAPI IEnumRegFiltersImpl_AddRef(IEnumRegFilters * iface)
117 IEnumRegFiltersImpl *This = (IEnumRegFiltersImpl *)iface;
118 ULONG refCount = InterlockedIncrement(&This->refCount);
120 TRACE("(%p)\n", iface);
122 return refCount;
125 static ULONG WINAPI IEnumRegFiltersImpl_Release(IEnumRegFilters * iface)
127 IEnumRegFiltersImpl *This = (IEnumRegFiltersImpl *)iface;
128 ULONG refCount = InterlockedDecrement(&This->refCount);
130 TRACE("(%p)\n", iface);
132 if (!refCount)
134 CoTaskMemFree(This);
135 return 0;
136 } else
137 return refCount;
140 static HRESULT WINAPI IEnumRegFiltersImpl_Next(IEnumRegFilters * iface, ULONG cFilters, REGFILTER ** ppRegFilter, ULONG * pcFetched)
142 ULONG cFetched;
143 IEnumRegFiltersImpl *This = (IEnumRegFiltersImpl *)iface;
144 unsigned int i;
146 cFetched = min(This->size, This->uIndex + cFilters) - This->uIndex;
148 TRACE("(%p)->(%u, %p, %p)\n", iface, cFilters, ppRegFilter, pcFetched);
150 if (cFetched > 0)
152 for(i = 0; i < cFetched; i++)
154 /* The string in the REGFILTER structure must be allocated in the same block as the REGFILTER structure itself */
155 ppRegFilter[i] = CoTaskMemAlloc(sizeof(REGFILTER)+(strlenW(This->RegFilters[i].Name)+1)*sizeof(WCHAR));
156 if (!ppRegFilter[i])
158 while(i)
160 CoTaskMemFree(ppRegFilter[--i]);
161 ppRegFilter[i] = NULL;
163 return E_OUTOFMEMORY;
165 ppRegFilter[i]->Clsid = This->RegFilters[i].Clsid;
166 ppRegFilter[i]->Name = (WCHAR*)((char*)ppRegFilter[i]+sizeof(REGFILTER));
167 CopyMemory(ppRegFilter[i]->Name, This->RegFilters[i].Name, (strlenW(This->RegFilters[i].Name)+1)*sizeof(WCHAR));
170 This->uIndex += cFetched;
171 if (pcFetched)
172 *pcFetched = cFetched;
173 return S_OK;
176 return S_FALSE;
179 static HRESULT WINAPI IEnumRegFiltersImpl_Skip(IEnumRegFilters * iface, ULONG n)
181 TRACE("(%p)->(%u)\n", iface, n);
183 return E_NOTIMPL;
186 static HRESULT WINAPI IEnumRegFiltersImpl_Reset(IEnumRegFilters * iface)
188 IEnumRegFiltersImpl *This = (IEnumRegFiltersImpl *)iface;
190 TRACE("(%p)\n", iface);
192 This->uIndex = 0;
193 return S_OK;
196 static HRESULT WINAPI IEnumRegFiltersImpl_Clone(IEnumRegFilters * iface, IEnumRegFilters ** ppEnum)
198 TRACE("(%p)->(%p)\n", iface, ppEnum);
200 return E_NOTIMPL;
203 static const IEnumRegFiltersVtbl IEnumRegFiltersImpl_Vtbl =
205 IEnumRegFiltersImpl_QueryInterface,
206 IEnumRegFiltersImpl_AddRef,
207 IEnumRegFiltersImpl_Release,
208 IEnumRegFiltersImpl_Next,
209 IEnumRegFiltersImpl_Skip,
210 IEnumRegFiltersImpl_Reset,
211 IEnumRegFiltersImpl_Clone