mmdevapi: Make MMDevice_GetPropValue() static.
This commit is contained in:
parent
6d15b88897
commit
4a27f7bf27
|
@ -151,7 +151,7 @@ static HRESULT MMDevPropStore_OpenPropKey(const GUID *guid, DWORD flow, HKEY *pr
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
HRESULT MMDevice_GetPropValue(const GUID *devguid, DWORD flow, REFPROPERTYKEY key, PROPVARIANT *pv)
|
static HRESULT MMDevice_GetPropValue(const GUID *devguid, DWORD flow, REFPROPERTYKEY key, PROPVARIANT *pv)
|
||||||
{
|
{
|
||||||
WCHAR buffer[80];
|
WCHAR buffer[80];
|
||||||
const GUID *id = &key->fmtid;
|
const GUID *id = &key->fmtid;
|
||||||
|
|
|
@ -23,7 +23,6 @@
|
||||||
extern HRESULT MMDevEnum_Create(REFIID riid, void **ppv) DECLSPEC_HIDDEN;
|
extern HRESULT MMDevEnum_Create(REFIID riid, void **ppv) DECLSPEC_HIDDEN;
|
||||||
extern void MMDevEnum_Free(void) DECLSPEC_HIDDEN;
|
extern void MMDevEnum_Free(void) DECLSPEC_HIDDEN;
|
||||||
|
|
||||||
extern HRESULT MMDevice_GetPropValue(const GUID *devguid, DWORD flow, REFPROPERTYKEY key, PROPVARIANT *pv) DECLSPEC_HIDDEN;
|
|
||||||
|
|
||||||
/* Changes to this enum must be synced in drivers. */
|
/* Changes to this enum must be synced in drivers. */
|
||||||
enum _DriverPriority {
|
enum _DriverPriority {
|
||||||
|
|
Loading…
Reference in New Issue