2009-12-15 15:35:18 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2009 Maarten Lankhorst
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2010-04-05 17:44:23 +02:00
|
|
|
#ifndef __WINE_CONFIG_H
|
|
|
|
# error You must include config.h to use this header
|
|
|
|
#endif
|
|
|
|
|
2011-05-13 17:24:42 +02:00
|
|
|
extern HRESULT MMDevEnum_Create(REFIID riid, void **ppv) DECLSPEC_HIDDEN;
|
|
|
|
extern void MMDevEnum_Free(void) DECLSPEC_HIDDEN;
|
2010-02-21 13:50:42 +01:00
|
|
|
|
2010-02-21 14:06:37 +01:00
|
|
|
|
2011-08-31 22:04:37 +02:00
|
|
|
/* Changes to this enum must be synced in drivers. */
|
|
|
|
enum _DriverPriority {
|
|
|
|
Priority_Unavailable = 0, /* driver won't work */
|
|
|
|
Priority_Low, /* driver may work, but unlikely */
|
|
|
|
Priority_Neutral, /* driver makes no judgment */
|
|
|
|
Priority_Preferred /* driver thinks it's correct */
|
|
|
|
};
|
|
|
|
|
2011-04-22 22:25:14 +02:00
|
|
|
typedef struct _DriverFuncs {
|
|
|
|
HMODULE module;
|
2011-08-31 22:04:23 +02:00
|
|
|
WCHAR module_name[64];
|
2011-08-31 22:04:37 +02:00
|
|
|
int priority;
|
|
|
|
|
|
|
|
/* Returns a "priority" value for the driver. Highest priority wins.
|
|
|
|
* If multiple drivers think they are valid, they will return a
|
|
|
|
* priority value reflecting the likelihood that they are actually
|
|
|
|
* valid. See enum _DriverPriority. */
|
2013-09-30 14:13:13 +02:00
|
|
|
int (WINAPI *pGetPriority)(void);
|
2011-04-22 22:25:14 +02:00
|
|
|
|
|
|
|
/* ids gets an array of human-friendly endpoint names
|
|
|
|
* keys gets an array of driver-specific stuff that is used
|
|
|
|
* in GetAudioEndpoint to identify the endpoint
|
|
|
|
* it is the caller's responsibility to free both arrays, and
|
|
|
|
* all of the elements in both arrays with HeapFree() */
|
2013-09-30 14:13:13 +02:00
|
|
|
HRESULT (WINAPI *pGetEndpointIDs)(EDataFlow flow, WCHAR ***ids,
|
2012-04-03 20:48:12 +02:00
|
|
|
GUID **guids, UINT *num, UINT *default_index);
|
2013-09-30 14:13:13 +02:00
|
|
|
HRESULT (WINAPI *pGetAudioEndpoint)(void *key, IMMDevice *dev,
|
2012-04-03 20:48:12 +02:00
|
|
|
IAudioClient **out);
|
2013-09-30 14:13:13 +02:00
|
|
|
HRESULT (WINAPI *pGetAudioSessionManager)(IMMDevice *device,
|
2011-06-06 15:49:48 +02:00
|
|
|
IAudioSessionManager2 **out);
|
2011-04-22 22:25:14 +02:00
|
|
|
} DriverFuncs;
|
|
|
|
|
2011-05-13 17:24:42 +02:00
|
|
|
extern DriverFuncs drvs DECLSPEC_HIDDEN;
|
2011-04-22 22:25:14 +02:00
|
|
|
|
2010-02-21 13:50:42 +01:00
|
|
|
typedef struct MMDevice {
|
2011-01-17 10:41:30 +01:00
|
|
|
IMMDevice IMMDevice_iface;
|
|
|
|
IMMEndpoint IMMEndpoint_iface;
|
2010-02-21 13:50:42 +01:00
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
CRITICAL_SECTION crst;
|
|
|
|
|
|
|
|
EDataFlow flow;
|
|
|
|
DWORD state;
|
|
|
|
GUID devguid;
|
2011-04-22 22:25:14 +02:00
|
|
|
WCHAR *drv_id;
|
2010-02-21 13:50:42 +01:00
|
|
|
} MMDevice;
|
2010-02-21 14:48:39 +01:00
|
|
|
|
2011-05-13 17:24:42 +02:00
|
|
|
extern HRESULT AudioClient_Create(MMDevice *parent, IAudioClient **ppv) DECLSPEC_HIDDEN;
|
|
|
|
extern HRESULT AudioEndpointVolume_Create(MMDevice *parent, IAudioEndpointVolume **ppv) DECLSPEC_HIDDEN;
|
2011-10-05 20:39:53 +02:00
|
|
|
|
|
|
|
extern const WCHAR drv_keyW[] DECLSPEC_HIDDEN;
|