2 * Copyright 2009 Maarten Lankhorst
3 * Copyright 2011 Andrew Eikum for CodeWeavers
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.
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.
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
21 #include "wine/port.h"
29 #include "wine/library.h"
36 #include "propkeydef.h"
37 #include "mmdeviceapi.h"
40 #include "audioclient.h"
41 #include "endpointvolume.h"
42 #include "audiopolicy.h"
47 #include "wine/debug.h"
49 WINE_DEFAULT_DEBUG_CHANNEL(mmdevapi
);
51 static HINSTANCE instance
;
55 static BOOL
load_driver(const WCHAR
*name
)
57 WCHAR driver_module
[264];
58 static const WCHAR wineW
[] = {'w','i','n','e',0};
59 static const WCHAR dotdrvW
[] = {'.','d','r','v',0};
61 lstrcpyW(driver_module
, wineW
);
62 lstrcatW(driver_module
, name
);
63 lstrcatW(driver_module
, dotdrvW
);
65 TRACE("Attempting to load %s\n", wine_dbgstr_w(driver_module
));
67 drvs
.module
= LoadLibraryW(driver_module
);
69 TRACE("Unable to load %s: %u\n", wine_dbgstr_w(driver_module
),
74 #define LDFC(n) do { drvs.p##n = (void*)GetProcAddress(drvs.module, #n);\
75 if(!drvs.p##n) { FreeLibrary(drvs.module); return FALSE; } } while(0)
77 LDFC(GetAudioEndpoint
);
80 TRACE("Successfully loaded %s\n", wine_dbgstr_w(driver_module
));
85 static BOOL
init_driver(void)
87 static const WCHAR alsaW
[] = {'a','l','s','a',0};
88 static const WCHAR ossW
[] = {'o','s','s',0};
89 static const WCHAR coreaudioW
[] = {'c','o','r','e','a','u','d','i','o',0};
90 static const WCHAR
*default_drivers
[] = { alsaW
, coreaudioW
, ossW
};
91 static const WCHAR drv_key
[] = {'S','o','f','t','w','a','r','e','\\',
92 'W','i','n','e','\\','D','r','i','v','e','r','s',0};
93 static const WCHAR drv_value
[] = {'A','u','d','i','o',0};
100 if(RegOpenKeyW(HKEY_CURRENT_USER
, drv_key
, &key
) == ERROR_SUCCESS
){
101 WCHAR driver_name
[256];
102 DWORD size
= sizeof(driver_name
);
104 if(RegQueryValueExW(key
, drv_value
, 0, NULL
, (BYTE
*)driver_name
,
105 &size
) == ERROR_SUCCESS
){
106 BOOL ret
= load_driver(driver_name
);
109 ERR("Failed to load driver: %s\n", wine_dbgstr_w(driver_name
));
116 for(i
= 0; i
< sizeof(default_drivers
)/sizeof(*default_drivers
); ++i
)
117 if(load_driver(default_drivers
[i
]))
123 BOOL WINAPI
DllMain(HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
125 TRACE("(0x%p, %d, %p)\n", hinstDLL
, fdwReason
, lpvReserved
);
129 case DLL_PROCESS_ATTACH
:
131 DisableThreadLibraryCalls(hinstDLL
);
133 case DLL_PROCESS_DETACH
:
141 HRESULT WINAPI
DllCanUnloadNow(void)
146 typedef HRESULT (*FnCreateInstance
)(REFIID riid
, LPVOID
*ppobj
);
149 IClassFactory IClassFactory_iface
;
151 FnCreateInstance pfnCreateInstance
;
154 static inline IClassFactoryImpl
*impl_from_IClassFactory(IClassFactory
*iface
)
156 return CONTAINING_RECORD(iface
, IClassFactoryImpl
, IClassFactory_iface
);
159 static HRESULT WINAPI
160 MMCF_QueryInterface(LPCLASSFACTORY iface
, REFIID riid
, LPVOID
*ppobj
)
162 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
163 TRACE("(%p, %s, %p)\n", This
, debugstr_guid(riid
), ppobj
);
166 if (IsEqualIID(riid
, &IID_IUnknown
) ||
167 IsEqualIID(riid
, &IID_IClassFactory
))
170 IUnknown_AddRef(iface
);
174 return E_NOINTERFACE
;
177 static ULONG WINAPI
MMCF_AddRef(LPCLASSFACTORY iface
)
182 static ULONG WINAPI
MMCF_Release(LPCLASSFACTORY iface
)
184 /* static class, won't be freed */
188 static HRESULT WINAPI
MMCF_CreateInstance(
189 LPCLASSFACTORY iface
,
194 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
195 TRACE("(%p, %p, %s, %p)\n", This
, pOuter
, debugstr_guid(riid
), ppobj
);
198 return CLASS_E_NOAGGREGATION
;
201 WARN("invalid parameter\n");
205 return This
->pfnCreateInstance(riid
, ppobj
);
208 static HRESULT WINAPI
MMCF_LockServer(LPCLASSFACTORY iface
, BOOL dolock
)
210 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
211 FIXME("(%p, %d) stub!\n", This
, dolock
);
215 static const IClassFactoryVtbl MMCF_Vtbl
= {
223 static IClassFactoryImpl MMDEVAPI_CF
[] = {
224 { { &MMCF_Vtbl
}, &CLSID_MMDeviceEnumerator
, (FnCreateInstance
)MMDevEnum_Create
}
227 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
230 TRACE("(%s, %s, %p)\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
233 ERR("Driver initialization failed\n");
238 WARN("invalid parameter\n");
244 if (!IsEqualIID(riid
, &IID_IClassFactory
) &&
245 !IsEqualIID(riid
, &IID_IUnknown
)) {
246 WARN("no interface for %s\n", debugstr_guid(riid
));
247 return E_NOINTERFACE
;
250 for (i
= 0; i
< sizeof(MMDEVAPI_CF
)/sizeof(MMDEVAPI_CF
[0]); ++i
)
252 if (IsEqualGUID(rclsid
, MMDEVAPI_CF
[i
].rclsid
)) {
253 IUnknown_AddRef(&MMDEVAPI_CF
[i
].IClassFactory_iface
);
254 *ppv
= &MMDEVAPI_CF
[i
];
260 WARN("(%s, %s, %p): no class found.\n", debugstr_guid(rclsid
),
261 debugstr_guid(riid
), ppv
);
262 return CLASS_E_CLASSNOTAVAILABLE
;
265 /***********************************************************************
266 * DllRegisterServer (MMDEVAPI.@)
268 HRESULT WINAPI
DllRegisterServer(void)
270 return __wine_register_resources( instance
, NULL
);
273 /***********************************************************************
274 * DllUnregisterServer (MMDEVAPI.@)
276 HRESULT WINAPI
DllUnregisterServer(void)
278 return __wine_unregister_resources( instance
, NULL
);