dmstyle: Assign to structs instead of using memcpy.
[wine] / dlls / msdmo / dmoreg.c
1 /*
2  * Copyright (C) 2003 Michael Günnewig
3  * Copyright (C) 2003 CodeWeavers Inc. (Ulrich Czekalla)
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library 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 GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18  */
19
20 #include <stdarg.h>
21
22 #include "windef.h"
23 #include "winbase.h"
24 #include "winuser.h"
25 #include "winerror.h"
26 #include "winreg.h"
27 #include "objbase.h"
28 #include "wine/unicode.h"
29 #include "wine/debug.h"
30 #include "initguid.h"
31 #include "dmo.h"
32
33 WINE_DEFAULT_DEBUG_CHANNEL(msdmo);
34
35 #define MSDMO_MAJOR_VERSION 6
36
37 static const WCHAR szDMORootKey[] = 
38 {
39     'D','i','r','e','c','t','S','h','o','w','\\',
40     'M','e','d','i','a','O','b','j','e','c','t','s',0
41 }; 
42
43 static const WCHAR szDMOInputType[] =
44 {
45     'I','n','p','u','t','T','y','p','e','s',0
46 };
47
48 static const WCHAR szDMOOutputType[] =
49 {
50     'O','u','t','p','u','t','T','y','p','e','s',0
51 };
52
53 static const WCHAR szDMOKeyed[] =
54 {
55     'K','e','y','e','d',0
56 };
57
58 static const WCHAR szDMOCategories[] =
59 {
60     'C','a','t','e','g','o','r','i','e','s',0
61 };
62
63 static const WCHAR szGUIDFmt[] =
64 {
65     '%','0','8','X','-','%','0','4','X','-','%','0','4','X','-','%','0',
66     '2','X','%','0','2','X','-','%','0','2','X','%','0','2','X','%','0','2',
67     'X','%','0','2','X','%','0','2','X','%','0','2','X',0
68 };
69
70 static const WCHAR szCat3Fmt[] =
71 {
72     '%','s','\\','%','s','\\','%','s',0
73 };
74
75 static const WCHAR szCat2Fmt[] =
76 {
77     '%','s','\\','%','s',0
78 };
79
80 static const WCHAR szToGuidFmt[] =
81 {
82     '{','%','s','}',0
83 };
84
85
86 typedef struct
87 {
88     const IEnumDMOVtbl         *lpVtbl;
89     LONG                        ref;
90     DWORD                       index;
91     const GUID*                 guidCategory;
92     DWORD                       dwFlags;
93     DWORD                       cInTypes;
94     DMO_PARTIAL_MEDIATYPE       *pInTypes;
95     DWORD                       cOutTypes;
96     DMO_PARTIAL_MEDIATYPE       *pOutTypes;
97     HKEY                        hkey;
98 } IEnumDMOImpl;
99
100 static HRESULT read_types(HKEY root, LPCWSTR key, ULONG *supplied, ULONG requested, DMO_PARTIAL_MEDIATYPE* types);
101
102 static const IEnumDMOVtbl edmovt;
103
104 static LPWSTR GUIDToString(LPWSTR lpwstr, REFGUID lpcguid)
105 {
106     wsprintfW(lpwstr, szGUIDFmt, lpcguid->Data1, lpcguid->Data2,
107         lpcguid->Data3, lpcguid->Data4[0], lpcguid->Data4[1],
108         lpcguid->Data4[2], lpcguid->Data4[3], lpcguid->Data4[4],
109         lpcguid->Data4[5], lpcguid->Data4[6], lpcguid->Data4[7]);
110
111     return lpwstr;
112 }
113
114 static BOOL IsMediaTypeEqual(const DMO_PARTIAL_MEDIATYPE* mt1, const DMO_PARTIAL_MEDIATYPE* mt2)
115 {
116
117     return (IsEqualCLSID(&mt1->type, &mt2->type) ||
118             IsEqualCLSID(&mt2->type, &GUID_NULL) ||
119             IsEqualCLSID(&mt1->type, &GUID_NULL)) &&
120             (IsEqualCLSID(&mt1->subtype, &mt2->subtype) ||
121             IsEqualCLSID(&mt2->subtype, &GUID_NULL) ||
122             IsEqualCLSID(&mt1->subtype, &GUID_NULL));
123 }
124
125 static HRESULT write_types(HKEY hkey, LPCWSTR name, const DMO_PARTIAL_MEDIATYPE* types, DWORD count)
126 {
127     HRESULT hres = S_OK;
128     if (MSDMO_MAJOR_VERSION > 5)
129     {
130         hres = RegSetValueExW(hkey, name, 0, REG_BINARY, (const BYTE*) types,
131                           count* sizeof(DMO_PARTIAL_MEDIATYPE));
132     }
133     else
134     {
135         HKEY skey1,skey2,skey3;
136         DWORD index = 0;
137         WCHAR szGuidKey[64];
138
139         hres = RegCreateKeyExW(hkey, name, 0, NULL, REG_OPTION_NON_VOLATILE,
140                                KEY_WRITE, NULL, &skey1, NULL);
141         while (index < count)
142         {
143             GUIDToString(szGuidKey,&types[index].type);
144             hres = RegCreateKeyExW(skey1, szGuidKey, 0, NULL,
145                         REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &skey2, NULL);
146             GUIDToString(szGuidKey,&types[index].subtype);
147             hres = RegCreateKeyExW(skey2, szGuidKey, 0, NULL,
148                         REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &skey3, NULL);
149             RegCloseKey(skey3);
150             RegCloseKey(skey2);
151             index ++;
152         }
153         RegCloseKey(skey1);
154     }
155
156     return hres;
157 }
158
159 /***************************************************************
160  * DMORegister (MSDMO.@)
161  *
162  * Register a DirectX Media Object.
163  */
164 HRESULT WINAPI DMORegister(
165    LPCWSTR szName,
166    REFCLSID clsidDMO,
167    REFGUID guidCategory,
168    DWORD dwFlags,
169    DWORD cInTypes,
170    const DMO_PARTIAL_MEDIATYPE *pInTypes,
171    DWORD cOutTypes,
172    const DMO_PARTIAL_MEDIATYPE *pOutTypes
173 )
174 {
175     WCHAR szguid[64];
176     HRESULT hres;
177     HKEY hrkey = 0;
178     HKEY hkey = 0;
179     HKEY hckey = 0;
180     HKEY hclskey = 0;
181
182     TRACE("%s\n", debugstr_w(szName));
183
184     hres = RegCreateKeyExW(HKEY_CLASSES_ROOT, szDMORootKey, 0, NULL,
185         REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hrkey, NULL);
186     if (ERROR_SUCCESS != hres)
187         goto lend;
188
189     /* Create clsidDMO key under MediaObjects */ 
190     hres = RegCreateKeyExW(hrkey, GUIDToString(szguid, clsidDMO), 0, NULL,
191         REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hkey, NULL);
192     if (ERROR_SUCCESS != hres)
193         goto lend;
194
195     /* Set default Name value */
196     hres = RegSetValueExW(hkey, NULL, 0, REG_SZ, (const BYTE*) szName, 
197         (strlenW(szName) + 1) * sizeof(WCHAR));
198
199     /* Set InputTypes */
200     hres = write_types(hkey, szDMOInputType, pInTypes, cInTypes);
201
202     /* Set OutputTypes */
203     hres = write_types(hkey, szDMOOutputType, pOutTypes, cOutTypes);
204
205     if (dwFlags & DMO_REGISTERF_IS_KEYED)
206     {
207         /* Create Keyed key */ 
208         hres = RegCreateKeyExW(hkey, szDMOKeyed, 0, NULL,
209             REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hckey, NULL);
210         if (ERROR_SUCCESS != hres)
211             goto lend;
212         RegCloseKey(hckey);
213     }
214
215     /* Register the category */
216     hres = RegCreateKeyExW(hrkey, szDMOCategories, 0, NULL,
217             REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hckey, NULL);
218     if (ERROR_SUCCESS != hres)
219         goto lend;
220
221     RegCloseKey(hkey);
222
223     hres = RegCreateKeyExW(hckey, GUIDToString(szguid, guidCategory), 0, NULL,
224             REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hkey, NULL);
225     if (ERROR_SUCCESS != hres)
226         goto lend;
227     hres = RegCreateKeyExW(hkey, GUIDToString(szguid, clsidDMO), 0, NULL,
228         REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hclskey, NULL);
229     if (ERROR_SUCCESS != hres)
230         goto lend;
231
232 lend:
233     if (hkey)
234         RegCloseKey(hkey);
235     if (hckey)
236         RegCloseKey(hckey);
237     if (hclskey)
238         RegCloseKey(hclskey);
239     if (hrkey)
240         RegCloseKey(hrkey);
241
242     TRACE(" hresult=0x%08x\n", hres);
243     return hres;
244 }
245
246
247 /***************************************************************
248  * DMOUnregister (MSDMO.@)
249  *
250  * Unregister a DirectX Media Object.
251  */
252 HRESULT WINAPI DMOUnregister(REFCLSID clsidDMO, REFGUID guidCategory)
253 {
254     HRESULT hres;
255     WCHAR szguid[64];
256     HKEY hrkey = 0;
257     HKEY hckey = 0;
258
259     GUIDToString(szguid, clsidDMO);
260
261     TRACE("%s %p\n", debugstr_w(szguid), guidCategory);
262
263     hres = RegOpenKeyExW(HKEY_CLASSES_ROOT, szDMORootKey, 0, KEY_WRITE, &hrkey);
264     if (ERROR_SUCCESS != hres)
265         goto lend;
266
267     hres = RegDeleteKeyW(hrkey, szguid);
268     if (ERROR_SUCCESS != hres)
269         goto lend;
270
271     hres = RegOpenKeyExW(hrkey, szDMOCategories, 0, KEY_WRITE, &hckey);
272     if (ERROR_SUCCESS != hres)
273         goto lend;
274
275     hres = RegDeleteKeyW(hckey, szguid);
276     if (ERROR_SUCCESS != hres)
277         goto lend;
278
279 lend:
280     if (hckey)
281         RegCloseKey(hckey);
282     if (hrkey)
283         RegCloseKey(hrkey);
284
285     return hres;
286 }
287
288
289 /***************************************************************
290  * DMOGetName (MSDMO.@)
291  *
292  * Get DMP Name from the registry
293  */
294 HRESULT WINAPI DMOGetName(REFCLSID clsidDMO, WCHAR szName[80])
295 {
296     WCHAR szguid[64];
297     HRESULT hres;
298     HKEY hrkey = 0;
299     HKEY hkey = 0;
300     DWORD count;
301
302     TRACE("%s\n", debugstr_guid(clsidDMO));
303
304     hres = RegOpenKeyExW(HKEY_CLASSES_ROOT, szDMORootKey, 
305         0, KEY_READ, &hrkey);
306     if (ERROR_SUCCESS != hres)
307         goto lend;
308
309     hres = RegOpenKeyExW(hrkey, GUIDToString(szguid, clsidDMO),
310         0, KEY_READ, &hkey);
311     if (ERROR_SUCCESS != hres)
312         goto lend;
313
314     count = sizeof(szName);
315     hres = RegQueryValueExW(hkey, NULL, NULL, NULL, 
316         (LPBYTE) szName, &count); 
317
318     TRACE(" szName=%s\n", debugstr_w(szName));
319 lend:
320     if (hkey)
321         RegCloseKey(hrkey);
322     if (hkey)
323         RegCloseKey(hkey);
324
325     return hres;
326 }
327
328
329 /**************************************************************************
330 *   IEnumDMO_Destructor
331 */
332 static BOOL IEnumDMO_Destructor(IEnumDMO* iface)
333 {
334     IEnumDMOImpl *This = (IEnumDMOImpl *)iface;
335
336     TRACE("%p\n", This);
337
338     if (This->hkey)
339         RegCloseKey(This->hkey);
340
341     HeapFree(GetProcessHeap(), 0, This->pInTypes);
342     HeapFree(GetProcessHeap(), 0, This->pOutTypes);
343
344     return TRUE;
345 }
346
347
348 /**************************************************************************
349  *  IEnumDMO_Constructor
350  */
351 static IEnumDMO * IEnumDMO_Constructor(
352     REFGUID guidCategory,
353     DWORD dwFlags,
354     DWORD cInTypes,
355     const DMO_PARTIAL_MEDIATYPE *pInTypes,
356     DWORD cOutTypes,
357     const DMO_PARTIAL_MEDIATYPE *pOutTypes)
358 {
359     UINT size;
360     IEnumDMOImpl* lpedmo;
361     BOOL ret = FALSE;
362
363     lpedmo = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IEnumDMOImpl));
364
365     if (lpedmo)
366     {
367         lpedmo->ref = 1;
368         lpedmo->lpVtbl = &edmovt;
369         lpedmo->index = -1;
370         lpedmo->guidCategory = guidCategory;
371         lpedmo->dwFlags = dwFlags;
372
373         if (cInTypes > 0)
374         {
375             size = cInTypes * sizeof(DMO_PARTIAL_MEDIATYPE);
376             lpedmo->pInTypes = HeapAlloc(GetProcessHeap(), 0, size);
377             if (!lpedmo->pInTypes)
378                 goto lerr;
379             memcpy(lpedmo->pInTypes, pInTypes, size);
380             lpedmo->cInTypes = cInTypes;
381         }
382
383         if (cOutTypes > 0)
384         {
385             size = cOutTypes * sizeof(DMO_PARTIAL_MEDIATYPE);
386             lpedmo->pOutTypes = HeapAlloc(GetProcessHeap(), 0, size);
387             if (!lpedmo->pOutTypes)
388                 goto lerr;
389             memcpy(lpedmo->pOutTypes, pOutTypes, size);
390             lpedmo->cOutTypes = cOutTypes;
391         }
392
393         /* If not filtering by category enum from media objects root */
394         if (IsEqualGUID(guidCategory, &GUID_NULL))
395         {
396             if (ERROR_SUCCESS == RegOpenKeyExW(HKEY_CLASSES_ROOT, szDMORootKey, 
397                 0, KEY_READ, &lpedmo->hkey))
398                 ret = TRUE;
399         }
400         else
401         {
402             WCHAR szguid[64];
403             WCHAR szKey[MAX_PATH];
404
405             wsprintfW(szKey, szCat3Fmt, szDMORootKey, szDMOCategories, 
406                 GUIDToString(szguid, guidCategory));
407             if (ERROR_SUCCESS == RegOpenKeyExW(HKEY_CLASSES_ROOT, szKey, 
408                 0, KEY_READ, &lpedmo->hkey))
409                 ret = TRUE;
410         }
411
412 lerr:
413         if(!ret)
414         {
415             IEnumDMO_Destructor((IEnumDMO*)lpedmo);
416             HeapFree(GetProcessHeap(),0,lpedmo);
417             lpedmo = NULL;
418         }
419     }
420
421     TRACE("returning %p\n", lpedmo);
422
423     return (IEnumDMO*)lpedmo;
424 }
425
426
427 /******************************************************************************
428  * IEnumDMO_fnAddRef
429  */
430 static ULONG WINAPI IEnumDMO_fnAddRef(IEnumDMO * iface)
431 {
432     IEnumDMOImpl *This = (IEnumDMOImpl *)iface;
433     return InterlockedIncrement(&This->ref);
434 }
435
436
437 /**************************************************************************
438  *  EnumDMO_QueryInterface
439  */
440 static HRESULT WINAPI IEnumDMO_fnQueryInterface(
441     IEnumDMO* iface,
442     REFIID riid,
443     LPVOID *ppvObj)
444 {
445     IEnumDMOImpl *This = (IEnumDMOImpl *)iface;
446
447     *ppvObj = NULL;
448
449     if(IsEqualIID(riid, &IID_IUnknown))
450         *ppvObj = This;
451     else if(IsEqualIID(riid, &IID_IEnumDMO))
452         *ppvObj = (IEnumDMO*)This;
453
454     if(*ppvObj)
455     {
456         IEnumDMO_fnAddRef((IEnumDMO*)*ppvObj);
457         return S_OK;
458     }
459
460     return E_NOINTERFACE;
461 }
462
463
464 /******************************************************************************
465  * IEnumDMO_fnRelease
466  */
467 static ULONG WINAPI IEnumDMO_fnRelease(IEnumDMO * iface)
468 {
469     IEnumDMOImpl *This = (IEnumDMOImpl *)iface;
470     ULONG refCount = InterlockedDecrement(&This->ref);
471
472     if (!refCount)
473     {
474         IEnumDMO_Destructor((IEnumDMO*)This);
475         HeapFree(GetProcessHeap(),0,This);
476     }
477     return refCount;
478 }
479
480
481 /******************************************************************************
482  * IEnumDMO_fnNext
483  */
484 static HRESULT WINAPI IEnumDMO_fnNext(
485     IEnumDMO * iface, 
486     DWORD cItemsToFetch,
487     CLSID * pCLSID,
488     WCHAR ** Names,
489     DWORD * pcItemsFetched)
490 {
491     FILETIME ft;
492     HKEY hkey;
493     WCHAR szNextKey[MAX_PATH];
494     WCHAR szGuidKey[64];
495     WCHAR szKey[MAX_PATH];
496     WCHAR szValue[MAX_PATH];
497     DWORD len;
498     UINT count = 0;
499     HRESULT hres = S_OK;
500
501     IEnumDMOImpl *This = (IEnumDMOImpl *)iface;
502
503     TRACE("--> (%p) %d %p %p %p\n", iface, cItemsToFetch, pCLSID, Names, pcItemsFetched);
504
505     if (!pCLSID || !Names || !pcItemsFetched)
506         return E_POINTER;
507
508     while (count < cItemsToFetch)
509     {
510         This->index++;
511
512         len = MAX_PATH;
513         hres = RegEnumKeyExW(This->hkey, This->index, szNextKey, &len, NULL, NULL, NULL, &ft);
514         if (hres != ERROR_SUCCESS)
515             break;
516
517         TRACE("found %s\n", debugstr_w(szNextKey));
518
519         if (!(This->dwFlags & DMO_ENUMF_INCLUDE_KEYED))
520         {
521             wsprintfW(szKey, szCat3Fmt, szDMORootKey, szNextKey, szDMOKeyed);
522             hres = RegOpenKeyExW(HKEY_CLASSES_ROOT, szKey, 0, KEY_READ, &hkey);
523             if (ERROR_SUCCESS == hres)
524             {
525                 RegCloseKey(hkey);
526                 /* Skip Keyed entries */
527                 continue;
528             }
529         }
530
531         wsprintfW(szKey, szCat2Fmt, szDMORootKey, szNextKey);
532         hres = RegOpenKeyExW(HKEY_CLASSES_ROOT, szKey, 0, KEY_READ, &hkey);
533
534         if (This->pInTypes)
535         {
536             UINT i, j;
537             DWORD cInTypes;
538             DMO_PARTIAL_MEDIATYPE* pInTypes;
539
540             hres = read_types(hkey, szDMOInputType, &cInTypes,
541                     sizeof(szValue)/sizeof(DMO_PARTIAL_MEDIATYPE),
542                     (DMO_PARTIAL_MEDIATYPE*)szValue);
543
544             if (ERROR_SUCCESS != hres)
545             {
546                 RegCloseKey(hkey);
547                 continue;
548             }
549
550             pInTypes = (DMO_PARTIAL_MEDIATYPE*) szValue;
551
552             for (i = 0; i < This->cInTypes; i++)
553             {
554                 for (j = 0; j < cInTypes; j++) 
555                 {
556                     if (IsMediaTypeEqual(&pInTypes[j], &This->pInTypes[i]))
557                         break;
558                 }
559
560                 if (j >= cInTypes)
561                     break;
562             }
563
564             if (i < This->cInTypes)
565             {
566                 RegCloseKey(hkey);
567                 continue;
568             }
569         }
570
571         if (This->pOutTypes)
572         {
573             UINT i, j;
574             DWORD cOutTypes;
575             DMO_PARTIAL_MEDIATYPE* pOutTypes;
576
577             hres = read_types(hkey, szDMOOutputType, &cOutTypes,
578                     sizeof(szValue)/sizeof(DMO_PARTIAL_MEDIATYPE),
579                     (DMO_PARTIAL_MEDIATYPE*)szValue);
580
581             if (ERROR_SUCCESS != hres)
582             {
583                 RegCloseKey(hkey);
584                 continue;
585             }
586
587             pOutTypes = (DMO_PARTIAL_MEDIATYPE*) szValue;
588
589             for (i = 0; i < This->cOutTypes; i++)
590             {
591                 for (j = 0; j < cOutTypes; j++) 
592                 {
593                     if (IsMediaTypeEqual(&pOutTypes[j], &This->pOutTypes[i]))
594                         break;
595                 }
596
597                 if (j >= cOutTypes)
598                     break;
599             }
600
601             if (i < This->cOutTypes)
602             {
603                 RegCloseKey(hkey);
604                 continue;
605             }
606         }
607
608         /* Media object wasn't filtered so add it to return list */
609         Names[count] = NULL;
610         len = MAX_PATH * sizeof(WCHAR);
611         hres = RegQueryValueExW(hkey, NULL, NULL, NULL, (LPBYTE) szValue, &len); 
612         if (ERROR_SUCCESS == hres)
613         {
614             Names[count] = HeapAlloc(GetProcessHeap(), 0, strlenW(szValue) + 1);
615             if (Names[count])
616                 strcmpW(Names[count], szValue);
617         }
618         wsprintfW(szGuidKey,szToGuidFmt,szNextKey);
619         CLSIDFromString(szGuidKey, &pCLSID[count]);
620
621         TRACE("found match %s %s\n", debugstr_w(szValue), debugstr_w(szNextKey));
622         RegCloseKey(hkey);
623         count++;
624     }
625
626     *pcItemsFetched = count;
627     if (*pcItemsFetched < cItemsToFetch)
628         hres = S_FALSE;
629
630     TRACE("<-- %i found\n",count);
631     return hres;
632 }
633  
634
635 /******************************************************************************
636  * IEnumDMO_fnSkip
637  */
638 static HRESULT WINAPI IEnumDMO_fnSkip(IEnumDMO * iface, DWORD cItemsToSkip)
639 {
640     IEnumDMOImpl *This = (IEnumDMOImpl *)iface;
641
642     This->index += cItemsToSkip;
643
644     return S_OK;
645 }
646
647
648 /******************************************************************************
649  * IEnumDMO_fnReset
650  */
651 static HRESULT WINAPI IEnumDMO_fnReset(IEnumDMO * iface)
652 {
653     IEnumDMOImpl *This = (IEnumDMOImpl *)iface;
654
655     This->index = -1;
656
657     return S_OK;
658 }
659  
660
661 /******************************************************************************
662  * IEnumDMO_fnClone
663  */
664 static HRESULT WINAPI IEnumDMO_fnClone(IEnumDMO * iface, IEnumDMO **ppEnum)
665 {
666     IEnumDMOImpl *This = (IEnumDMOImpl *)iface;
667
668     FIXME("(%p)->() to (%p)->() E_NOTIMPL\n", This, ppEnum);
669
670   return E_NOTIMPL;
671 }
672
673
674 /***************************************************************
675  * DMOEnum (MSDMO.@)
676  *
677  * Enumerate DirectX Media Objects in the registry.
678  */
679 HRESULT WINAPI DMOEnum(
680     REFGUID guidCategory,
681     DWORD dwFlags,
682     DWORD cInTypes,
683     const DMO_PARTIAL_MEDIATYPE *pInTypes,
684     DWORD cOutTypes,
685     const DMO_PARTIAL_MEDIATYPE *pOutTypes,
686     IEnumDMO **ppEnum)
687 {
688     HRESULT hres = E_FAIL;
689
690     TRACE("guidCategory=%p dwFlags=0x%08x cInTypes=%d cOutTypes=%d\n",
691         guidCategory, dwFlags, cInTypes, cOutTypes);
692
693     *ppEnum = IEnumDMO_Constructor(guidCategory, dwFlags, cInTypes,
694         pInTypes, cOutTypes, pOutTypes);
695     if (*ppEnum)
696         hres = S_OK;
697
698     return hres;
699 }
700
701
702 static const IEnumDMOVtbl edmovt =
703 {
704         IEnumDMO_fnQueryInterface,
705         IEnumDMO_fnAddRef,
706         IEnumDMO_fnRelease,
707         IEnumDMO_fnNext,
708         IEnumDMO_fnSkip,
709         IEnumDMO_fnReset,
710         IEnumDMO_fnClone,
711 };
712
713
714 HRESULT read_types(HKEY root, LPCWSTR key, ULONG *supplied, ULONG requested, DMO_PARTIAL_MEDIATYPE* types )
715 {
716     HRESULT ret = S_OK;
717     if (MSDMO_MAJOR_VERSION > 5)
718     {
719         DWORD len;
720         len = requested * sizeof(DMO_PARTIAL_MEDIATYPE);
721         ret = RegQueryValueExW(root, key, NULL, NULL, (LPBYTE) types, &len);
722         *supplied = len / sizeof(DMO_PARTIAL_MEDIATYPE);
723     }
724     else
725     {
726         HKEY hkey;
727         WCHAR szGuidKey[64];
728
729         *supplied = 0;
730         if (ERROR_SUCCESS == RegOpenKeyExW(root, key, 0, KEY_READ, &hkey))
731         {
732           int index = 0;
733           WCHAR szNextKey[MAX_PATH];
734           DWORD len;
735           LONG rc = ERROR_SUCCESS;
736
737           while (rc == ERROR_SUCCESS)
738           {
739             len = MAX_PATH * sizeof(WCHAR);
740             rc = RegEnumKeyExW(hkey, index, szNextKey, &len, NULL, NULL, NULL, NULL);
741             if (rc == ERROR_SUCCESS)
742             {
743               HKEY subk;
744               int sub_index = 0;
745               LONG rcs = ERROR_SUCCESS;
746               WCHAR szSubKey[MAX_PATH];
747
748               RegOpenKeyExW(hkey, szNextKey, 0, KEY_READ, &subk);
749               while (rcs == ERROR_SUCCESS)
750               {
751                 len = MAX_PATH * sizeof(WCHAR);
752                 rcs = RegEnumKeyExW(subk, sub_index, szSubKey, &len, NULL, NULL, NULL, NULL);
753                 if (rcs == ERROR_SUCCESS)
754                 {
755                   if (*supplied >= requested)
756                   {
757                     /* Bailing */
758                     ret = S_FALSE;
759                     rc = ERROR_MORE_DATA;
760                     rcs = ERROR_MORE_DATA;
761                     break;
762                   }
763
764                   wsprintfW(szGuidKey,szToGuidFmt,szNextKey);
765                   CLSIDFromString(szGuidKey, &types[*supplied].type);
766                   wsprintfW(szGuidKey,szToGuidFmt,szSubKey);
767                   CLSIDFromString(szGuidKey, &types[*supplied].subtype);
768                   TRACE("Adding type %s subtype %s at index %i\n",
769                     debugstr_guid(&types[*supplied].type),
770                     debugstr_guid(&types[*supplied].subtype),
771                     *supplied);
772                   (*supplied)++;
773                 }
774                 sub_index++;
775               }
776               index++;
777             }
778           }
779           RegCloseKey(hkey);
780         }
781     }
782     return ret;
783 }
784
785 /***************************************************************
786  * DMOGetTypes (MSDMO.@)
787  */
788 HRESULT WINAPI DMOGetTypes(REFCLSID clsidDMO,
789                ULONG ulInputTypesRequested,
790                ULONG* pulInputTypesSupplied,
791                DMO_PARTIAL_MEDIATYPE* pInputTypes,
792                ULONG ulOutputTypesRequested,
793                ULONG* pulOutputTypesSupplied,
794                DMO_PARTIAL_MEDIATYPE* pOutputTypes)
795 {
796   HKEY root,hkey;
797   HRESULT ret = S_OK;
798   WCHAR szguid[64];
799
800   TRACE ("(%s,%u,%p,%p,%u,%p,%p),stub!\n", debugstr_guid(clsidDMO),
801         ulInputTypesRequested, pulInputTypesSupplied, pInputTypes,
802         ulOutputTypesRequested, pulOutputTypesSupplied, pOutputTypes);
803
804   if (ERROR_SUCCESS != RegOpenKeyExW(HKEY_CLASSES_ROOT, szDMORootKey, 0,
805                                      KEY_READ, &root))
806     return E_FAIL;
807
808   if (ERROR_SUCCESS != RegOpenKeyExW(root,GUIDToString(szguid,clsidDMO) , 0,
809                                      KEY_READ, &hkey))
810   {
811     RegCloseKey(root);
812     return E_FAIL;
813   }
814
815   if (ulInputTypesRequested > 0)
816   {
817     ret = read_types(hkey, szDMOInputType, pulInputTypesSupplied, ulInputTypesRequested, pInputTypes );
818   }
819   else
820     *pulInputTypesSupplied = 0;
821
822   if (ulOutputTypesRequested > 0)
823   {
824     HRESULT ret2;
825     ret2 = read_types(hkey, szDMOOutputType, pulOutputTypesSupplied, ulOutputTypesRequested, pOutputTypes );
826
827     if (ret == S_OK)
828         ret = ret2;
829   }
830   else
831     *pulOutputTypesSupplied = 0;
832
833   return ret;
834 }