Commit 4a27f7bf authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

mmdevapi: Make MMDevice_GetPropValue() static.

parent 6d15b888
...@@ -151,7 +151,7 @@ static HRESULT MMDevPropStore_OpenPropKey(const GUID *guid, DWORD flow, HKEY *pr ...@@ -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 @@ ...@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment