2 * Copyright 2009 Maarten Lankhorst
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #define NONAMELESSUNION
29 #include "wine/debug.h"
30 #include "wine/list.h"
31 #include "wine/unicode.h"
35 #include "mmdeviceapi.h"
38 #include "audioclient.h"
39 #include "endpointvolume.h"
40 #include "audiopolicy.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(mmdevapi
);
47 static const WCHAR software_mmdevapi
[] =
48 { 'S','o','f','t','w','a','r','e','\\',
49 'M','i','c','r','o','s','o','f','t','\\',
50 'W','i','n','d','o','w','s','\\',
51 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
52 'M','M','D','e','v','i','c','e','s','\\',
53 'A','u','d','i','o',0};
54 static const WCHAR reg_render
[] =
55 { 'R','e','n','d','e','r',0 };
56 static const WCHAR reg_capture
[] =
57 { 'C','a','p','t','u','r','e',0 };
58 static const WCHAR reg_devicestate
[] =
59 { 'D','e','v','i','c','e','S','t','a','t','e',0 };
60 static const WCHAR reg_properties
[] =
61 { 'P','r','o','p','e','r','t','i','e','s',0 };
62 static const WCHAR slashW
[] = {'\\',0};
63 static const WCHAR reg_out_nameW
[] = {'D','e','f','a','u','l','t','O','u','t','p','u','t',0};
64 static const WCHAR reg_vout_nameW
[] = {'D','e','f','a','u','l','t','V','o','i','c','e','O','u','t','p','u','t',0};
65 static const WCHAR reg_in_nameW
[] = {'D','e','f','a','u','l','t','I','n','p','u','t',0};
66 static const WCHAR reg_vin_nameW
[] = {'D','e','f','a','u','l','t','V','o','i','c','e','I','n','p','u','t',0};
68 static HKEY key_render
;
69 static HKEY key_capture
;
71 typedef struct MMDevPropStoreImpl
73 IPropertyStore IPropertyStore_iface
;
79 typedef struct MMDevEnumImpl
81 IMMDeviceEnumerator IMMDeviceEnumerator_iface
;
85 static MMDevEnumImpl
*MMDevEnumerator
;
86 static MMDevice
**MMDevice_head
;
87 static MMDevice
*MMDevice_def_rec
, *MMDevice_def_play
;
88 static DWORD MMDevice_count
;
89 static const IMMDeviceEnumeratorVtbl MMDevEnumVtbl
;
90 static const IMMDeviceCollectionVtbl MMDevColVtbl
;
91 static const IMMDeviceVtbl MMDeviceVtbl
;
92 static const IPropertyStoreVtbl MMDevPropVtbl
;
93 static const IMMEndpointVtbl MMEndpointVtbl
;
95 static IMMDevice info_device
;
97 typedef struct MMDevColImpl
99 IMMDeviceCollection IMMDeviceCollection_iface
;
105 typedef struct IPropertyBagImpl
{
106 IPropertyBag IPropertyBag_iface
;
110 static const IPropertyBagVtbl PB_Vtbl
;
112 static HRESULT
MMDevPropStore_Create(MMDevice
*This
, DWORD access
, IPropertyStore
**ppv
);
114 static inline MMDevPropStore
*impl_from_IPropertyStore(IPropertyStore
*iface
)
116 return CONTAINING_RECORD(iface
, MMDevPropStore
, IPropertyStore_iface
);
119 static inline MMDevEnumImpl
*impl_from_IMMDeviceEnumerator(IMMDeviceEnumerator
*iface
)
121 return CONTAINING_RECORD(iface
, MMDevEnumImpl
, IMMDeviceEnumerator_iface
);
124 static inline MMDevColImpl
*impl_from_IMMDeviceCollection(IMMDeviceCollection
*iface
)
126 return CONTAINING_RECORD(iface
, MMDevColImpl
, IMMDeviceCollection_iface
);
129 static inline IPropertyBagImpl
*impl_from_IPropertyBag(IPropertyBag
*iface
)
131 return CONTAINING_RECORD(iface
, IPropertyBagImpl
, IPropertyBag_iface
);
134 static const WCHAR propkey_formatW
[] = {
135 '{','%','0','8','X','-','%','0','4','X','-',
136 '%','0','4','X','-','%','0','2','X','%','0','2','X','-',
137 '%','0','2','X','%','0','2','X','%','0','2','X','%','0','2','X',
138 '%','0','2','X','%','0','2','X','}',',','%','d',0 };
140 static HRESULT
MMDevPropStore_OpenPropKey(const GUID
*guid
, DWORD flow
, HKEY
*propkey
)
145 StringFromGUID2(guid
, buffer
, 39);
146 if ((ret
= RegOpenKeyExW(flow
== eRender
? key_render
: key_capture
, buffer
, 0, KEY_READ
|KEY_WRITE
, &key
)) != ERROR_SUCCESS
)
148 WARN("Opening key %s failed with %u\n", debugstr_w(buffer
), ret
);
151 ret
= RegOpenKeyExW(key
, reg_properties
, 0, KEY_READ
|KEY_WRITE
, propkey
);
153 if (ret
!= ERROR_SUCCESS
)
155 WARN("Opening key %s failed with %u\n", debugstr_w(reg_properties
), ret
);
161 static HRESULT
MMDevice_GetPropValue(const GUID
*devguid
, DWORD flow
, REFPROPERTYKEY key
, PROPVARIANT
*pv
)
164 const GUID
*id
= &key
->fmtid
;
170 hr
= MMDevPropStore_OpenPropKey(devguid
, flow
, ®key
);
173 wsprintfW( buffer
, propkey_formatW
, id
->Data1
, id
->Data2
, id
->Data3
,
174 id
->Data4
[0], id
->Data4
[1], id
->Data4
[2], id
->Data4
[3],
175 id
->Data4
[4], id
->Data4
[5], id
->Data4
[6], id
->Data4
[7], key
->pid
);
176 ret
= RegGetValueW(regkey
, NULL
, buffer
, RRF_RT_ANY
, &type
, NULL
, &size
);
177 if (ret
!= ERROR_SUCCESS
)
179 WARN("Reading %s returned %d\n", debugstr_w(buffer
), ret
);
181 PropVariantClear(pv
);
190 pv
->u
.pwszVal
= CoTaskMemAlloc(size
);
194 RegGetValueW(regkey
, NULL
, buffer
, RRF_RT_REG_SZ
, NULL
, (BYTE
*)pv
->u
.pwszVal
, &size
);
200 RegGetValueW(regkey
, NULL
, buffer
, RRF_RT_REG_DWORD
, NULL
, (BYTE
*)&pv
->u
.ulVal
, &size
);
206 pv
->u
.blob
.cbSize
= size
;
207 pv
->u
.blob
.pBlobData
= CoTaskMemAlloc(size
);
208 if (!pv
->u
.blob
.pBlobData
)
211 RegGetValueW(regkey
, NULL
, buffer
, RRF_RT_REG_BINARY
, NULL
, (BYTE
*)pv
->u
.blob
.pBlobData
, &size
);
215 ERR("Unknown/unhandled type: %u\n", type
);
216 PropVariantClear(pv
);
223 static HRESULT
MMDevice_SetPropValue(const GUID
*devguid
, DWORD flow
, REFPROPERTYKEY key
, REFPROPVARIANT pv
)
226 const GUID
*id
= &key
->fmtid
;
231 hr
= MMDevPropStore_OpenPropKey(devguid
, flow
, ®key
);
234 wsprintfW( buffer
, propkey_formatW
, id
->Data1
, id
->Data2
, id
->Data3
,
235 id
->Data4
[0], id
->Data4
[1], id
->Data4
[2], id
->Data4
[3],
236 id
->Data4
[4], id
->Data4
[5], id
->Data4
[6], id
->Data4
[7], key
->pid
);
241 ret
= RegSetValueExW(regkey
, buffer
, 0, REG_DWORD
, (const BYTE
*)&pv
->u
.ulVal
, sizeof(DWORD
));
246 ret
= RegSetValueExW(regkey
, buffer
, 0, REG_BINARY
, pv
->u
.blob
.pBlobData
, pv
->u
.blob
.cbSize
);
247 TRACE("Blob %p %u\n", pv
->u
.blob
.pBlobData
, pv
->u
.blob
.cbSize
);
253 ret
= RegSetValueExW(regkey
, buffer
, 0, REG_SZ
, (const BYTE
*)pv
->u
.pwszVal
, sizeof(WCHAR
)*(1+lstrlenW(pv
->u
.pwszVal
)));
258 FIXME("Unhandled type %u\n", pv
->vt
);
263 TRACE("Writing %s returned %u\n", debugstr_w(buffer
), ret
);
267 /* Creates or updates the state of a device
268 * If GUID is null, a random guid will be assigned
269 * and the device will be created
271 static MMDevice
*MMDevice_Create(WCHAR
*name
, GUID
*id
, EDataFlow flow
, DWORD state
, BOOL setdefault
)
274 MMDevice
*cur
= NULL
;
278 static const PROPERTYKEY deviceinterface_key
= {
279 {0x233164c8, 0x1b2c, 0x4c7d, {0xbc, 0x68, 0xb6, 0x71, 0x68, 0x7a, 0x25, 0x67}}, 1
282 for (i
= 0; i
< MMDevice_count
; ++i
)
284 MMDevice
*device
= MMDevice_head
[i
];
285 if (device
->flow
== flow
&& IsEqualGUID(&device
->devguid
, id
)){
292 /* No device found, allocate new one */
293 cur
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*cur
));
297 cur
->IMMDevice_iface
.lpVtbl
= &MMDeviceVtbl
;
298 cur
->IMMEndpoint_iface
.lpVtbl
= &MMEndpointVtbl
;
300 InitializeCriticalSection(&cur
->crst
);
301 cur
->crst
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": MMDevice.crst");
304 MMDevice_head
= HeapAlloc(GetProcessHeap(), 0, sizeof(*MMDevice_head
));
306 MMDevice_head
= HeapReAlloc(GetProcessHeap(), 0, MMDevice_head
, sizeof(*MMDevice_head
)*(1+MMDevice_count
));
307 MMDevice_head
[MMDevice_count
++] = cur
;
308 }else if(cur
->ref
> 0)
309 WARN("Modifying an MMDevice with postitive reference count!\n");
311 HeapFree(GetProcessHeap(), 0, cur
->drv_id
);
318 StringFromGUID2(&cur
->devguid
, guidstr
, sizeof(guidstr
)/sizeof(*guidstr
));
325 if (RegCreateKeyExW(root
, guidstr
, 0, NULL
, 0, KEY_WRITE
|KEY_READ
, NULL
, &key
, NULL
) == ERROR_SUCCESS
)
328 RegSetValueExW(key
, reg_devicestate
, 0, REG_DWORD
, (const BYTE
*)&state
, sizeof(DWORD
));
329 if (!RegCreateKeyExW(key
, reg_properties
, 0, NULL
, 0, KEY_WRITE
|KEY_READ
, NULL
, &keyprop
, NULL
))
335 MMDevice_SetPropValue(id
, flow
, (const PROPERTYKEY
*)&DEVPKEY_Device_FriendlyName
, &pv
);
336 MMDevice_SetPropValue(id
, flow
, (const PROPERTYKEY
*)&DEVPKEY_Device_DeviceDesc
, &pv
);
338 pv
.u
.pwszVal
= guidstr
;
339 MMDevice_SetPropValue(id
, flow
, &deviceinterface_key
, &pv
);
341 RegCloseKey(keyprop
);
349 MMDevice_def_play
= cur
;
351 MMDevice_def_rec
= cur
;
356 static HRESULT
load_devices_from_reg(void)
363 ret
= RegCreateKeyExW(HKEY_LOCAL_MACHINE
, software_mmdevapi
, 0, NULL
, 0, KEY_WRITE
|KEY_READ
, NULL
, &root
, NULL
);
364 if (ret
== ERROR_SUCCESS
)
365 ret
= RegCreateKeyExW(root
, reg_capture
, 0, NULL
, 0, KEY_READ
|KEY_WRITE
, NULL
, &key_capture
, NULL
);
366 if (ret
== ERROR_SUCCESS
)
367 ret
= RegCreateKeyExW(root
, reg_render
, 0, NULL
, 0, KEY_READ
|KEY_WRITE
, NULL
, &key_render
, NULL
);
371 if (ret
!= ERROR_SUCCESS
)
373 RegCloseKey(key_capture
);
374 key_render
= key_capture
= NULL
;
375 WARN("Couldn't create key: %u\n", ret
);
383 PROPVARIANT pv
= { VT_EMPTY
};
385 len
= sizeof(guidvalue
)/sizeof(guidvalue
[0]);
386 ret
= RegEnumKeyExW(cur
, i
++, guidvalue
, &len
, NULL
, NULL
, NULL
, NULL
);
387 if (ret
== ERROR_NO_MORE_ITEMS
)
389 if (cur
== key_capture
)
398 if (ret
!= ERROR_SUCCESS
)
400 if (SUCCEEDED(CLSIDFromString(guidvalue
, &guid
))
401 && SUCCEEDED(MMDevice_GetPropValue(&guid
, curflow
, (const PROPERTYKEY
*)&DEVPKEY_Device_FriendlyName
, &pv
))
402 && pv
.vt
== VT_LPWSTR
)
404 DWORD size_bytes
= (strlenW(pv
.u
.pwszVal
) + 1) * sizeof(WCHAR
);
405 WCHAR
*name
= HeapAlloc(GetProcessHeap(), 0, size_bytes
);
406 memcpy(name
, pv
.u
.pwszVal
, size_bytes
);
407 MMDevice_Create(name
, &guid
, curflow
,
408 DEVICE_STATE_NOTPRESENT
, FALSE
);
409 CoTaskMemFree(pv
.u
.pwszVal
);
416 static HRESULT
set_format(MMDevice
*dev
)
419 IAudioClient
*client
;
421 PROPVARIANT pv
= { VT_EMPTY
};
423 hr
= drvs
.pGetAudioEndpoint(&dev
->devguid
, &dev
->IMMDevice_iface
, &client
);
427 hr
= IAudioClient_GetMixFormat(client
, &fmt
);
429 IAudioClient_Release(client
);
433 IAudioClient_Release(client
);
436 pv
.u
.blob
.cbSize
= sizeof(WAVEFORMATEX
) + fmt
->cbSize
;
437 pv
.u
.blob
.pBlobData
= (BYTE
*)fmt
;
438 MMDevice_SetPropValue(&dev
->devguid
, dev
->flow
,
439 &PKEY_AudioEngine_DeviceFormat
, &pv
);
440 MMDevice_SetPropValue(&dev
->devguid
, dev
->flow
,
441 &PKEY_AudioEngine_OEMFormat
, &pv
);
446 static HRESULT
load_driver_devices(EDataFlow flow
)
453 if(!drvs
.pGetEndpointIDs
)
456 hr
= drvs
.pGetEndpointIDs(flow
, &ids
, &guids
, &num
, &def
);
460 for(i
= 0; i
< num
; ++i
){
462 dev
= MMDevice_Create(ids
[i
], &guids
[i
], flow
, DEVICE_STATE_ACTIVE
,
467 HeapFree(GetProcessHeap(), 0, guids
);
468 HeapFree(GetProcessHeap(), 0, ids
);
473 static void MMDevice_Destroy(MMDevice
*This
)
476 TRACE("Freeing %s\n", debugstr_w(This
->drv_id
));
477 /* Since this function is called at destruction time, reordering of the list is unimportant */
478 for (i
= 0; i
< MMDevice_count
; ++i
)
480 if (MMDevice_head
[i
] == This
)
482 MMDevice_head
[i
] = MMDevice_head
[--MMDevice_count
];
486 This
->crst
.DebugInfo
->Spare
[0] = 0;
487 DeleteCriticalSection(&This
->crst
);
488 HeapFree(GetProcessHeap(), 0, This
->drv_id
);
489 HeapFree(GetProcessHeap(), 0, This
);
492 static inline MMDevice
*impl_from_IMMDevice(IMMDevice
*iface
)
494 return CONTAINING_RECORD(iface
, MMDevice
, IMMDevice_iface
);
497 static HRESULT WINAPI
MMDevice_QueryInterface(IMMDevice
*iface
, REFIID riid
, void **ppv
)
499 MMDevice
*This
= impl_from_IMMDevice(iface
);
500 TRACE("(%p)->(%s,%p)\n", iface
, debugstr_guid(riid
), ppv
);
505 if (IsEqualIID(riid
, &IID_IUnknown
)
506 || IsEqualIID(riid
, &IID_IMMDevice
))
508 else if (IsEqualIID(riid
, &IID_IMMEndpoint
))
509 *ppv
= &This
->IMMEndpoint_iface
;
512 IUnknown_AddRef((IUnknown
*)*ppv
);
515 WARN("Unknown interface %s\n", debugstr_guid(riid
));
516 return E_NOINTERFACE
;
519 static ULONG WINAPI
MMDevice_AddRef(IMMDevice
*iface
)
521 MMDevice
*This
= impl_from_IMMDevice(iface
);
524 ref
= InterlockedIncrement(&This
->ref
);
525 TRACE("Refcount now %i\n", ref
);
529 static ULONG WINAPI
MMDevice_Release(IMMDevice
*iface
)
531 MMDevice
*This
= impl_from_IMMDevice(iface
);
534 ref
= InterlockedDecrement(&This
->ref
);
535 TRACE("Refcount now %i\n", ref
);
539 static HRESULT WINAPI
MMDevice_Activate(IMMDevice
*iface
, REFIID riid
, DWORD clsctx
, PROPVARIANT
*params
, void **ppv
)
541 HRESULT hr
= E_NOINTERFACE
;
542 MMDevice
*This
= impl_from_IMMDevice(iface
);
544 TRACE("(%p)->(%p,%x,%p,%p)\n", iface
, riid
, clsctx
, params
, ppv
);
549 if (IsEqualIID(riid
, &IID_IAudioClient
)){
550 hr
= drvs
.pGetAudioEndpoint(&This
->devguid
, iface
, (IAudioClient
**)ppv
);
551 }else if (IsEqualIID(riid
, &IID_IAudioEndpointVolume
))
552 hr
= AudioEndpointVolume_Create(This
, (IAudioEndpointVolume
**)ppv
);
553 else if (IsEqualIID(riid
, &IID_IAudioSessionManager
)
554 || IsEqualIID(riid
, &IID_IAudioSessionManager2
))
556 hr
= drvs
.pGetAudioSessionManager(iface
, (IAudioSessionManager2
**)ppv
);
558 else if (IsEqualIID(riid
, &IID_IBaseFilter
))
560 if (This
->flow
== eRender
)
561 hr
= CoCreateInstance(&CLSID_DSoundRender
, NULL
, clsctx
, riid
, ppv
);
563 ERR("Not supported for recording?\n");
566 IPersistPropertyBag
*ppb
;
567 hr
= IUnknown_QueryInterface((IUnknown
*)*ppv
, &IID_IPersistPropertyBag
, (void*)&ppb
);
570 /* ::Load cannot assume the interface stays alive after the function returns,
571 * so just create the interface on the stack, saves a lot of complicated code */
572 IPropertyBagImpl bag
= { { &PB_Vtbl
} };
573 bag
.devguid
= This
->devguid
;
574 hr
= IPersistPropertyBag_Load(ppb
, &bag
.IPropertyBag_iface
, NULL
);
575 IPersistPropertyBag_Release(ppb
);
577 IBaseFilter_Release((IBaseFilter
*)*ppv
);
581 FIXME("Wine doesn't support IPersistPropertyBag on DSoundRender yet, ignoring..\n");
586 else if (IsEqualIID(riid
, &IID_IDeviceTopology
))
588 FIXME("IID_IDeviceTopology unsupported\n");
590 else if (IsEqualIID(riid
, &IID_IDirectSound
)
591 || IsEqualIID(riid
, &IID_IDirectSound8
))
593 if (This
->flow
== eRender
)
594 hr
= CoCreateInstance(&CLSID_DirectSound8
, NULL
, clsctx
, riid
, ppv
);
597 hr
= IDirectSound_Initialize((IDirectSound
*)*ppv
, &This
->devguid
);
599 IDirectSound_Release((IDirectSound
*)*ppv
);
602 else if (IsEqualIID(riid
, &IID_IDirectSoundCapture
)
603 || IsEqualIID(riid
, &IID_IDirectSoundCapture8
))
605 if (This
->flow
== eCapture
)
606 hr
= CoCreateInstance(&CLSID_DirectSoundCapture8
, NULL
, clsctx
, riid
, ppv
);
609 hr
= IDirectSoundCapture_Initialize((IDirectSoundCapture
*)*ppv
, &This
->devguid
);
611 IDirectSoundCapture_Release((IDirectSoundCapture
*)*ppv
);
615 ERR("Invalid/unknown iid %s\n", debugstr_guid(riid
));
620 TRACE("Returning %08x\n", hr
);
624 static HRESULT WINAPI
MMDevice_OpenPropertyStore(IMMDevice
*iface
, DWORD access
, IPropertyStore
**ppv
)
626 MMDevice
*This
= impl_from_IMMDevice(iface
);
627 TRACE("(%p)->(%x,%p)\n", This
, access
, ppv
);
631 return MMDevPropStore_Create(This
, access
, ppv
);
634 static HRESULT WINAPI
MMDevice_GetId(IMMDevice
*iface
, WCHAR
**itemid
)
636 MMDevice
*This
= impl_from_IMMDevice(iface
);
638 GUID
*id
= &This
->devguid
;
639 static const WCHAR formatW
[] = { '{','0','.','0','.','%','u','.','0','0','0','0','0','0','0','0','}','.',
640 '{','%','0','8','X','-','%','0','4','X','-',
641 '%','0','4','X','-','%','0','2','X','%','0','2','X','-',
642 '%','0','2','X','%','0','2','X','%','0','2','X','%','0','2','X',
643 '%','0','2','X','%','0','2','X','}',0 };
645 TRACE("(%p)->(%p)\n", This
, itemid
);
648 *itemid
= str
= CoTaskMemAlloc(56 * sizeof(WCHAR
));
650 return E_OUTOFMEMORY
;
651 wsprintfW( str
, formatW
, This
->flow
, id
->Data1
, id
->Data2
, id
->Data3
,
652 id
->Data4
[0], id
->Data4
[1], id
->Data4
[2], id
->Data4
[3],
653 id
->Data4
[4], id
->Data4
[5], id
->Data4
[6], id
->Data4
[7] );
654 TRACE("returning %s\n", wine_dbgstr_w(str
));
658 static HRESULT WINAPI
MMDevice_GetState(IMMDevice
*iface
, DWORD
*state
)
660 MMDevice
*This
= impl_from_IMMDevice(iface
);
661 TRACE("(%p)->(%p)\n", iface
, state
);
665 *state
= This
->state
;
669 static const IMMDeviceVtbl MMDeviceVtbl
=
671 MMDevice_QueryInterface
,
675 MMDevice_OpenPropertyStore
,
680 static inline MMDevice
*impl_from_IMMEndpoint(IMMEndpoint
*iface
)
682 return CONTAINING_RECORD(iface
, MMDevice
, IMMEndpoint_iface
);
685 static HRESULT WINAPI
MMEndpoint_QueryInterface(IMMEndpoint
*iface
, REFIID riid
, void **ppv
)
687 MMDevice
*This
= impl_from_IMMEndpoint(iface
);
688 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), ppv
);
689 return IMMDevice_QueryInterface(&This
->IMMDevice_iface
, riid
, ppv
);
692 static ULONG WINAPI
MMEndpoint_AddRef(IMMEndpoint
*iface
)
694 MMDevice
*This
= impl_from_IMMEndpoint(iface
);
695 TRACE("(%p)\n", This
);
696 return IMMDevice_AddRef(&This
->IMMDevice_iface
);
699 static ULONG WINAPI
MMEndpoint_Release(IMMEndpoint
*iface
)
701 MMDevice
*This
= impl_from_IMMEndpoint(iface
);
702 TRACE("(%p)\n", This
);
703 return IMMDevice_Release(&This
->IMMDevice_iface
);
706 static HRESULT WINAPI
MMEndpoint_GetDataFlow(IMMEndpoint
*iface
, EDataFlow
*flow
)
708 MMDevice
*This
= impl_from_IMMEndpoint(iface
);
709 TRACE("(%p)->(%p)\n", This
, flow
);
716 static const IMMEndpointVtbl MMEndpointVtbl
=
718 MMEndpoint_QueryInterface
,
721 MMEndpoint_GetDataFlow
724 static HRESULT
MMDevCol_Create(IMMDeviceCollection
**ppv
, EDataFlow flow
, DWORD state
)
728 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
731 return E_OUTOFMEMORY
;
732 This
->IMMDeviceCollection_iface
.lpVtbl
= &MMDevColVtbl
;
736 *ppv
= &This
->IMMDeviceCollection_iface
;
740 static void MMDevCol_Destroy(MMDevColImpl
*This
)
742 HeapFree(GetProcessHeap(), 0, This
);
745 static HRESULT WINAPI
MMDevCol_QueryInterface(IMMDeviceCollection
*iface
, REFIID riid
, void **ppv
)
747 MMDevColImpl
*This
= impl_from_IMMDeviceCollection(iface
);
748 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), ppv
);
752 if (IsEqualIID(riid
, &IID_IUnknown
)
753 || IsEqualIID(riid
, &IID_IMMDeviceCollection
))
758 return E_NOINTERFACE
;
759 IUnknown_AddRef((IUnknown
*)*ppv
);
763 static ULONG WINAPI
MMDevCol_AddRef(IMMDeviceCollection
*iface
)
765 MMDevColImpl
*This
= impl_from_IMMDeviceCollection(iface
);
766 LONG ref
= InterlockedIncrement(&This
->ref
);
767 TRACE("Refcount now %i\n", ref
);
771 static ULONG WINAPI
MMDevCol_Release(IMMDeviceCollection
*iface
)
773 MMDevColImpl
*This
= impl_from_IMMDeviceCollection(iface
);
774 LONG ref
= InterlockedDecrement(&This
->ref
);
775 TRACE("Refcount now %i\n", ref
);
777 MMDevCol_Destroy(This
);
781 static HRESULT WINAPI
MMDevCol_GetCount(IMMDeviceCollection
*iface
, UINT
*numdevs
)
783 MMDevColImpl
*This
= impl_from_IMMDeviceCollection(iface
);
786 TRACE("(%p)->(%p)\n", This
, numdevs
);
791 for (i
= 0; i
< MMDevice_count
; ++i
)
793 MMDevice
*cur
= MMDevice_head
[i
];
794 if ((cur
->flow
== This
->flow
|| This
->flow
== eAll
)
795 && (cur
->state
& This
->state
))
801 static HRESULT WINAPI
MMDevCol_Item(IMMDeviceCollection
*iface
, UINT n
, IMMDevice
**dev
)
803 MMDevColImpl
*This
= impl_from_IMMDeviceCollection(iface
);
806 TRACE("(%p)->(%u, %p)\n", This
, n
, dev
);
810 for (j
= 0; j
< MMDevice_count
; ++j
)
812 MMDevice
*cur
= MMDevice_head
[j
];
813 if ((cur
->flow
== This
->flow
|| This
->flow
== eAll
)
814 && (cur
->state
& This
->state
)
817 *dev
= &cur
->IMMDevice_iface
;
818 IMMDevice_AddRef(*dev
);
822 WARN("Could not obtain item %u\n", n
);
827 static const IMMDeviceCollectionVtbl MMDevColVtbl
=
829 MMDevCol_QueryInterface
,
836 HRESULT
MMDevEnum_Create(REFIID riid
, void **ppv
)
838 MMDevEnumImpl
*This
= MMDevEnumerator
;
842 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
845 return E_OUTOFMEMORY
;
847 This
->IMMDeviceEnumerator_iface
.lpVtbl
= &MMDevEnumVtbl
;
848 MMDevEnumerator
= This
;
850 load_devices_from_reg();
851 load_driver_devices(eRender
);
852 load_driver_devices(eCapture
);
854 return IUnknown_QueryInterface((IUnknown
*)This
, riid
, ppv
);
857 void MMDevEnum_Free(void)
859 while (MMDevice_count
)
860 MMDevice_Destroy(MMDevice_head
[0]);
861 RegCloseKey(key_render
);
862 RegCloseKey(key_capture
);
863 key_render
= key_capture
= NULL
;
864 HeapFree(GetProcessHeap(), 0, MMDevEnumerator
);
865 MMDevEnumerator
= NULL
;
868 static HRESULT WINAPI
MMDevEnum_QueryInterface(IMMDeviceEnumerator
*iface
, REFIID riid
, void **ppv
)
870 MMDevEnumImpl
*This
= impl_from_IMMDeviceEnumerator(iface
);
871 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), ppv
);
875 if (IsEqualIID(riid
, &IID_IUnknown
)
876 || IsEqualIID(riid
, &IID_IMMDeviceEnumerator
))
881 return E_NOINTERFACE
;
882 IUnknown_AddRef((IUnknown
*)*ppv
);
886 static ULONG WINAPI
MMDevEnum_AddRef(IMMDeviceEnumerator
*iface
)
888 MMDevEnumImpl
*This
= impl_from_IMMDeviceEnumerator(iface
);
889 LONG ref
= InterlockedIncrement(&This
->ref
);
890 TRACE("Refcount now %i\n", ref
);
894 static ULONG WINAPI
MMDevEnum_Release(IMMDeviceEnumerator
*iface
)
896 MMDevEnumImpl
*This
= impl_from_IMMDeviceEnumerator(iface
);
897 LONG ref
= InterlockedDecrement(&This
->ref
);
900 TRACE("Refcount now %i\n", ref
);
904 static HRESULT WINAPI
MMDevEnum_EnumAudioEndpoints(IMMDeviceEnumerator
*iface
, EDataFlow flow
, DWORD mask
, IMMDeviceCollection
**devices
)
906 MMDevEnumImpl
*This
= impl_from_IMMDeviceEnumerator(iface
);
907 TRACE("(%p)->(%u,%u,%p)\n", This
, flow
, mask
, devices
);
911 if (flow
>= EDataFlow_enum_count
)
913 if (mask
& ~DEVICE_STATEMASK_ALL
)
915 return MMDevCol_Create(devices
, flow
, mask
);
918 static HRESULT WINAPI
MMDevEnum_GetDefaultAudioEndpoint(IMMDeviceEnumerator
*iface
, EDataFlow flow
, ERole role
, IMMDevice
**device
)
920 MMDevEnumImpl
*This
= impl_from_IMMDeviceEnumerator(iface
);
925 TRACE("(%p)->(%u,%u,%p)\n", This
, flow
, role
, device
);
930 if((flow
!= eRender
&& flow
!= eCapture
) ||
931 (role
!= eConsole
&& role
!= eMultimedia
&& role
!= eCommunications
)){
932 WARN("Unknown flow (%u) or role (%u)\n", flow
, role
);
938 if(!drvs
.module_name
[0])
941 lstrcpyW(reg_key
, drv_keyW
);
942 lstrcatW(reg_key
, slashW
);
943 lstrcatW(reg_key
, drvs
.module_name
);
945 if(RegOpenKeyW(HKEY_CURRENT_USER
, reg_key
, &key
) == ERROR_SUCCESS
){
946 const WCHAR
*reg_x_name
, *reg_vx_name
;
948 DWORD size
= sizeof(def_id
), state
;
951 reg_x_name
= reg_out_nameW
;
952 reg_vx_name
= reg_vout_nameW
;
954 reg_x_name
= reg_in_nameW
;
955 reg_vx_name
= reg_vin_nameW
;
958 if(role
== eCommunications
&&
959 RegQueryValueExW(key
, reg_vx_name
, 0, NULL
,
960 (BYTE
*)def_id
, &size
) == ERROR_SUCCESS
){
961 hr
= IMMDeviceEnumerator_GetDevice(iface
, def_id
, device
);
963 if(SUCCEEDED(IMMDevice_GetState(*device
, &state
)) &&
964 state
== DEVICE_STATE_ACTIVE
){
970 TRACE("Unable to find voice device %s\n", wine_dbgstr_w(def_id
));
973 if(RegQueryValueExW(key
, reg_x_name
, 0, NULL
,
974 (BYTE
*)def_id
, &size
) == ERROR_SUCCESS
){
975 hr
= IMMDeviceEnumerator_GetDevice(iface
, def_id
, device
);
977 if(SUCCEEDED(IMMDevice_GetState(*device
, &state
)) &&
978 state
== DEVICE_STATE_ACTIVE
){
984 TRACE("Unable to find device %s\n", wine_dbgstr_w(def_id
));
991 *device
= &MMDevice_def_play
->IMMDevice_iface
;
993 *device
= &MMDevice_def_rec
->IMMDevice_iface
;
997 IMMDevice_AddRef(*device
);
1001 static HRESULT WINAPI
MMDevEnum_GetDevice(IMMDeviceEnumerator
*iface
, const WCHAR
*name
, IMMDevice
**device
)
1003 MMDevEnumImpl
*This
= impl_from_IMMDeviceEnumerator(iface
);
1005 IMMDevice
*dev
= NULL
;
1007 static const WCHAR wine_info_deviceW
[] = {'W','i','n','e',' ',
1008 'i','n','f','o',' ','d','e','v','i','c','e',0};
1010 TRACE("(%p)->(%s,%p)\n", This
, debugstr_w(name
), device
);
1012 if(!name
|| !device
)
1015 if(!lstrcmpW(name
, wine_info_deviceW
)){
1016 *device
= &info_device
;
1020 for (i
= 0; i
< MMDevice_count
; ++i
)
1023 dev
= &MMDevice_head
[i
]->IMMDevice_iface
;
1024 IMMDevice_GetId(dev
, &str
);
1026 if (str
&& !lstrcmpW(str
, name
))
1029 IMMDevice_AddRef(dev
);
1035 TRACE("Could not find device %s\n", debugstr_w(name
));
1036 return E_INVALIDARG
;
1039 struct NotificationClientWrapper
{
1040 IMMNotificationClient
*client
;
1044 static struct list g_notif_clients
= LIST_INIT(g_notif_clients
);
1045 static HANDLE g_notif_thread
;
1047 static CRITICAL_SECTION g_notif_lock
;
1048 static CRITICAL_SECTION_DEBUG g_notif_lock_debug
=
1050 0, 0, &g_notif_lock
,
1051 { &g_notif_lock_debug
.ProcessLocksList
, &g_notif_lock_debug
.ProcessLocksList
},
1052 0, 0, { (DWORD_PTR
)(__FILE__
": g_notif_lock") }
1054 static CRITICAL_SECTION g_notif_lock
= { &g_notif_lock_debug
, -1, 0, 0, 0, 0 };
1056 static void notify_clients(EDataFlow flow
, ERole role
, const WCHAR
*id
)
1058 struct NotificationClientWrapper
*wrapper
;
1059 LIST_FOR_EACH_ENTRY(wrapper
, &g_notif_clients
,
1060 struct NotificationClientWrapper
, entry
)
1061 IMMNotificationClient_OnDefaultDeviceChanged(wrapper
->client
, flow
,
1064 /* Windows 7 treats changes to eConsole as changes to eMultimedia */
1065 if(role
== eConsole
)
1066 notify_clients(flow
, eMultimedia
, id
);
1069 static int notify_if_changed(EDataFlow flow
, ERole role
, HKEY key
,
1070 const WCHAR
*val_name
, WCHAR
*old_val
, IMMDevice
*def_dev
)
1072 WCHAR new_val
[64], *id
;
1076 size
= sizeof(new_val
);
1077 if(RegQueryValueExW(key
, val_name
, 0, NULL
,
1078 (BYTE
*)new_val
, &size
) != ERROR_SUCCESS
){
1079 if(old_val
[0] != 0){
1080 /* set by user -> system default */
1082 hr
= IMMDevice_GetId(def_dev
, &id
);
1084 ERR("GetId failed: %08x\n", hr
);
1090 notify_clients(flow
, role
, id
);
1097 /* system default -> system default, noop */
1101 if(!lstrcmpW(old_val
, new_val
)){
1102 /* set by user -> same value */
1106 if(new_val
[0] != 0){
1107 /* set by user -> different value */
1108 notify_clients(flow
, role
, new_val
);
1109 memcpy(old_val
, new_val
, sizeof(new_val
));
1113 /* set by user -> system default */
1115 hr
= IMMDevice_GetId(def_dev
, &id
);
1117 ERR("GetId failed: %08x\n", hr
);
1123 notify_clients(flow
, role
, id
);
1130 static DWORD WINAPI
notif_thread_proc(void *user
)
1134 WCHAR out_name
[64], vout_name
[64], in_name
[64], vin_name
[64];
1137 lstrcpyW(reg_key
, drv_keyW
);
1138 lstrcatW(reg_key
, slashW
);
1139 lstrcatW(reg_key
, drvs
.module_name
);
1141 if(RegCreateKeyExW(HKEY_CURRENT_USER
, reg_key
, 0, NULL
, 0,
1142 MAXIMUM_ALLOWED
, NULL
, &key
, NULL
) != ERROR_SUCCESS
){
1143 ERR("RegCreateKeyEx failed: %u\n", GetLastError());
1147 size
= sizeof(out_name
);
1148 if(RegQueryValueExW(key
, reg_out_nameW
, 0, NULL
,
1149 (BYTE
*)out_name
, &size
) != ERROR_SUCCESS
)
1152 size
= sizeof(vout_name
);
1153 if(RegQueryValueExW(key
, reg_vout_nameW
, 0, NULL
,
1154 (BYTE
*)vout_name
, &size
) != ERROR_SUCCESS
)
1157 size
= sizeof(in_name
);
1158 if(RegQueryValueExW(key
, reg_in_nameW
, 0, NULL
,
1159 (BYTE
*)in_name
, &size
) != ERROR_SUCCESS
)
1162 size
= sizeof(vin_name
);
1163 if(RegQueryValueExW(key
, reg_vin_nameW
, 0, NULL
,
1164 (BYTE
*)vin_name
, &size
) != ERROR_SUCCESS
)
1168 if(RegNotifyChangeKeyValue(key
, FALSE
, REG_NOTIFY_CHANGE_LAST_SET
,
1169 NULL
, FALSE
) != ERROR_SUCCESS
){
1170 ERR("RegNotifyChangeKeyValue failed: %u\n", GetLastError());
1172 g_notif_thread
= NULL
;
1176 EnterCriticalSection(&g_notif_lock
);
1178 notify_if_changed(eRender
, eConsole
, key
, reg_out_nameW
,
1179 out_name
, &MMDevice_def_play
->IMMDevice_iface
);
1180 notify_if_changed(eRender
, eCommunications
, key
, reg_vout_nameW
,
1181 vout_name
, &MMDevice_def_play
->IMMDevice_iface
);
1182 notify_if_changed(eCapture
, eConsole
, key
, reg_in_nameW
,
1183 in_name
, &MMDevice_def_rec
->IMMDevice_iface
);
1184 notify_if_changed(eCapture
, eCommunications
, key
, reg_vin_nameW
,
1185 vin_name
, &MMDevice_def_rec
->IMMDevice_iface
);
1187 LeaveCriticalSection(&g_notif_lock
);
1192 g_notif_thread
= NULL
;
1197 static HRESULT WINAPI
MMDevEnum_RegisterEndpointNotificationCallback(IMMDeviceEnumerator
*iface
, IMMNotificationClient
*client
)
1199 MMDevEnumImpl
*This
= impl_from_IMMDeviceEnumerator(iface
);
1200 struct NotificationClientWrapper
*wrapper
;
1202 TRACE("(%p)->(%p)\n", This
, client
);
1207 wrapper
= HeapAlloc(GetProcessHeap(), 0, sizeof(*wrapper
));
1209 return E_OUTOFMEMORY
;
1211 wrapper
->client
= client
;
1213 EnterCriticalSection(&g_notif_lock
);
1215 list_add_tail(&g_notif_clients
, &wrapper
->entry
);
1217 if(!g_notif_thread
){
1218 g_notif_thread
= CreateThread(NULL
, 0, notif_thread_proc
, NULL
, 0, NULL
);
1220 ERR("CreateThread failed: %u\n", GetLastError());
1223 LeaveCriticalSection(&g_notif_lock
);
1228 static HRESULT WINAPI
MMDevEnum_UnregisterEndpointNotificationCallback(IMMDeviceEnumerator
*iface
, IMMNotificationClient
*client
)
1230 MMDevEnumImpl
*This
= impl_from_IMMDeviceEnumerator(iface
);
1231 struct NotificationClientWrapper
*wrapper
, *wrapper2
;
1233 TRACE("(%p)->(%p)\n", This
, client
);
1238 EnterCriticalSection(&g_notif_lock
);
1240 LIST_FOR_EACH_ENTRY_SAFE(wrapper
, wrapper2
, &g_notif_clients
,
1241 struct NotificationClientWrapper
, entry
){
1242 if(wrapper
->client
== client
){
1243 list_remove(&wrapper
->entry
);
1244 HeapFree(GetProcessHeap(), 0, wrapper
);
1245 LeaveCriticalSection(&g_notif_lock
);
1250 LeaveCriticalSection(&g_notif_lock
);
1255 static const IMMDeviceEnumeratorVtbl MMDevEnumVtbl
=
1257 MMDevEnum_QueryInterface
,
1260 MMDevEnum_EnumAudioEndpoints
,
1261 MMDevEnum_GetDefaultAudioEndpoint
,
1262 MMDevEnum_GetDevice
,
1263 MMDevEnum_RegisterEndpointNotificationCallback
,
1264 MMDevEnum_UnregisterEndpointNotificationCallback
1267 static HRESULT
MMDevPropStore_Create(MMDevice
*parent
, DWORD access
, IPropertyStore
**ppv
)
1269 MMDevPropStore
*This
;
1270 if (access
!= STGM_READ
1271 && access
!= STGM_WRITE
1272 && access
!= STGM_READWRITE
)
1274 WARN("Invalid access %08x\n", access
);
1275 return E_INVALIDARG
;
1277 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
1278 *ppv
= &This
->IPropertyStore_iface
;
1280 return E_OUTOFMEMORY
;
1281 This
->IPropertyStore_iface
.lpVtbl
= &MMDevPropVtbl
;
1283 This
->parent
= parent
;
1284 This
->access
= access
;
1288 static void MMDevPropStore_Destroy(MMDevPropStore
*This
)
1290 HeapFree(GetProcessHeap(), 0, This
);
1293 static HRESULT WINAPI
MMDevPropStore_QueryInterface(IPropertyStore
*iface
, REFIID riid
, void **ppv
)
1295 MMDevPropStore
*This
= impl_from_IPropertyStore(iface
);
1296 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), ppv
);
1300 if (IsEqualIID(riid
, &IID_IUnknown
)
1301 || IsEqualIID(riid
, &IID_IPropertyStore
))
1306 return E_NOINTERFACE
;
1307 IUnknown_AddRef((IUnknown
*)*ppv
);
1311 static ULONG WINAPI
MMDevPropStore_AddRef(IPropertyStore
*iface
)
1313 MMDevPropStore
*This
= impl_from_IPropertyStore(iface
);
1314 LONG ref
= InterlockedIncrement(&This
->ref
);
1315 TRACE("Refcount now %i\n", ref
);
1319 static ULONG WINAPI
MMDevPropStore_Release(IPropertyStore
*iface
)
1321 MMDevPropStore
*This
= impl_from_IPropertyStore(iface
);
1322 LONG ref
= InterlockedDecrement(&This
->ref
);
1323 TRACE("Refcount now %i\n", ref
);
1325 MMDevPropStore_Destroy(This
);
1329 static HRESULT WINAPI
MMDevPropStore_GetCount(IPropertyStore
*iface
, DWORD
*nprops
)
1331 MMDevPropStore
*This
= impl_from_IPropertyStore(iface
);
1337 TRACE("(%p)->(%p)\n", iface
, nprops
);
1340 hr
= MMDevPropStore_OpenPropKey(&This
->parent
->devguid
, This
->parent
->flow
, &propkey
);
1345 DWORD len
= sizeof(buffer
)/sizeof(*buffer
);
1346 if (RegEnumValueW(propkey
, i
, buffer
, &len
, NULL
, NULL
, NULL
, NULL
) != ERROR_SUCCESS
)
1350 RegCloseKey(propkey
);
1351 TRACE("Returning %i\n", i
);
1356 static HRESULT WINAPI
MMDevPropStore_GetAt(IPropertyStore
*iface
, DWORD prop
, PROPERTYKEY
*key
)
1358 MMDevPropStore
*This
= impl_from_IPropertyStore(iface
);
1360 DWORD len
= sizeof(buffer
)/sizeof(*buffer
);
1364 TRACE("(%p)->(%u,%p)\n", iface
, prop
, key
);
1368 hr
= MMDevPropStore_OpenPropKey(&This
->parent
->devguid
, This
->parent
->flow
, &propkey
);
1372 if (RegEnumValueW(propkey
, prop
, buffer
, &len
, NULL
, NULL
, NULL
, NULL
) != ERROR_SUCCESS
1375 WARN("GetAt %u failed\n", prop
);
1376 return E_INVALIDARG
;
1378 RegCloseKey(propkey
);
1380 CLSIDFromString(buffer
, &key
->fmtid
);
1381 key
->pid
= atoiW(&buffer
[39]);
1385 static HRESULT WINAPI
MMDevPropStore_GetValue(IPropertyStore
*iface
, REFPROPERTYKEY key
, PROPVARIANT
*pv
)
1387 MMDevPropStore
*This
= impl_from_IPropertyStore(iface
);
1388 TRACE("(%p)->(\"%s,%u\", %p)\n", This
, key
? debugstr_guid(&key
->fmtid
) : NULL
, key
? key
->pid
: 0, pv
);
1392 if (This
->access
!= STGM_READ
1393 && This
->access
!= STGM_READWRITE
)
1394 return STG_E_ACCESSDENIED
;
1397 if (IsEqualPropertyKey(*key
, PKEY_AudioEndpoint_GUID
))
1400 pv
->u
.pwszVal
= CoTaskMemAlloc(39 * sizeof(WCHAR
));
1402 return E_OUTOFMEMORY
;
1403 StringFromGUID2(&This
->parent
->devguid
, pv
->u
.pwszVal
, 39);
1407 return MMDevice_GetPropValue(&This
->parent
->devguid
, This
->parent
->flow
, key
, pv
);
1410 static HRESULT WINAPI
MMDevPropStore_SetValue(IPropertyStore
*iface
, REFPROPERTYKEY key
, REFPROPVARIANT pv
)
1412 MMDevPropStore
*This
= impl_from_IPropertyStore(iface
);
1413 TRACE("(%p)->(\"%s,%u\", %p)\n", This
, key
? debugstr_guid(&key
->fmtid
) : NULL
, key
? key
->pid
: 0, pv
);
1418 if (This
->access
!= STGM_WRITE
1419 && This
->access
!= STGM_READWRITE
)
1420 return STG_E_ACCESSDENIED
;
1421 return MMDevice_SetPropValue(&This
->parent
->devguid
, This
->parent
->flow
, key
, pv
);
1424 static HRESULT WINAPI
MMDevPropStore_Commit(IPropertyStore
*iface
)
1430 static const IPropertyStoreVtbl MMDevPropVtbl
=
1432 MMDevPropStore_QueryInterface
,
1433 MMDevPropStore_AddRef
,
1434 MMDevPropStore_Release
,
1435 MMDevPropStore_GetCount
,
1436 MMDevPropStore_GetAt
,
1437 MMDevPropStore_GetValue
,
1438 MMDevPropStore_SetValue
,
1439 MMDevPropStore_Commit
1443 /* Property bag for IBaseFilter activation */
1444 static HRESULT WINAPI
PB_QueryInterface(IPropertyBag
*iface
, REFIID riid
, void **ppv
)
1446 ERR("Should not be called\n");
1448 return E_NOINTERFACE
;
1451 static ULONG WINAPI
PB_AddRef(IPropertyBag
*iface
)
1453 ERR("Should not be called\n");
1457 static ULONG WINAPI
PB_Release(IPropertyBag
*iface
)
1459 ERR("Should not be called\n");
1463 static HRESULT WINAPI
PB_Read(IPropertyBag
*iface
, LPCOLESTR name
, VARIANT
*var
, IErrorLog
*log
)
1465 static const WCHAR dsguid
[] = { 'D','S','G','u','i','d', 0 };
1466 IPropertyBagImpl
*This
= impl_from_IPropertyBag(iface
);
1467 TRACE("Trying to read %s, type %u\n", debugstr_w(name
), var
->n1
.n2
.vt
);
1468 if (!lstrcmpW(name
, dsguid
))
1471 StringFromGUID2(&This
->devguid
, guidstr
,sizeof(guidstr
)/sizeof(*guidstr
));
1472 var
->n1
.n2
.vt
= VT_BSTR
;
1473 var
->n1
.n2
.n3
.bstrVal
= SysAllocString(guidstr
);
1476 ERR("Unknown property '%s' queried\n", debugstr_w(name
));
1480 static HRESULT WINAPI
PB_Write(IPropertyBag
*iface
, LPCOLESTR name
, VARIANT
*var
)
1482 ERR("Should not be called\n");
1486 static const IPropertyBagVtbl PB_Vtbl
=
1495 static ULONG WINAPI
info_device_ps_AddRef(IPropertyStore
*iface
)
1500 static ULONG WINAPI
info_device_ps_Release(IPropertyStore
*iface
)
1505 static HRESULT WINAPI
info_device_ps_GetValue(IPropertyStore
*iface
,
1506 REFPROPERTYKEY key
, PROPVARIANT
*pv
)
1508 TRACE("(static)->(\"%s,%u\", %p)\n", debugstr_guid(&key
->fmtid
), key
? key
->pid
: 0, pv
);
1513 if (IsEqualPropertyKey(*key
, DEVPKEY_Device_Driver
))
1515 INT size
= (lstrlenW(drvs
.module_name
) + 1) * sizeof(WCHAR
);
1517 pv
->u
.pwszVal
= CoTaskMemAlloc(size
);
1519 return E_OUTOFMEMORY
;
1520 memcpy(pv
->u
.pwszVal
, drvs
.module_name
, size
);
1524 return E_INVALIDARG
;
1527 static const IPropertyStoreVtbl info_device_ps_Vtbl
=
1530 info_device_ps_AddRef
,
1531 info_device_ps_Release
,
1534 info_device_ps_GetValue
,
1539 static IPropertyStore info_device_ps
= {
1540 &info_device_ps_Vtbl
1543 static ULONG WINAPI
info_device_AddRef(IMMDevice
*iface
)
1548 static ULONG WINAPI
info_device_Release(IMMDevice
*iface
)
1553 static HRESULT WINAPI
info_device_OpenPropertyStore(IMMDevice
*iface
,
1554 DWORD access
, IPropertyStore
**ppv
)
1556 TRACE("(static)->(%x, %p)\n", access
, ppv
);
1557 *ppv
= &info_device_ps
;
1561 static const IMMDeviceVtbl info_device_Vtbl
=
1565 info_device_Release
,
1567 info_device_OpenPropertyStore
,
1572 static IMMDevice info_device
= {