mmdevapi: Mark internal symbols with hidden visibility.

This commit is contained in:
Marcus Meissner 2011-05-13 17:24:42 +02:00 committed by Alexandre Julliard
parent 340be4feb7
commit dc5c9c5595
1 changed files with 6 additions and 6 deletions

View File

@ -20,10 +20,10 @@
# error You must include config.h to use this header # error You must include config.h to use this header
#endif #endif
extern HRESULT MMDevEnum_Create(REFIID riid, void **ppv); extern HRESULT MMDevEnum_Create(REFIID riid, void **ppv) DECLSPEC_HIDDEN;
extern void MMDevEnum_Free(void); extern void MMDevEnum_Free(void) DECLSPEC_HIDDEN;
extern HRESULT MMDevice_GetPropValue(const GUID *devguid, DWORD flow, REFPROPERTYKEY key, PROPVARIANT *pv); extern HRESULT MMDevice_GetPropValue(const GUID *devguid, DWORD flow, REFPROPERTYKEY key, PROPVARIANT *pv) DECLSPEC_HIDDEN;
typedef struct _DriverFuncs { typedef struct _DriverFuncs {
HMODULE module; HMODULE module;
@ -39,7 +39,7 @@ typedef struct _DriverFuncs {
EDataFlow dataflow, IAudioClient **out); EDataFlow dataflow, IAudioClient **out);
} DriverFuncs; } DriverFuncs;
extern DriverFuncs drvs; extern DriverFuncs drvs DECLSPEC_HIDDEN;
typedef struct MMDevice { typedef struct MMDevice {
IMMDevice IMMDevice_iface; IMMDevice IMMDevice_iface;
@ -55,5 +55,5 @@ typedef struct MMDevice {
void *key; void *key;
} MMDevice; } MMDevice;
extern HRESULT AudioClient_Create(MMDevice *parent, IAudioClient **ppv); extern HRESULT AudioClient_Create(MMDevice *parent, IAudioClient **ppv) DECLSPEC_HIDDEN;
extern HRESULT AudioEndpointVolume_Create(MMDevice *parent, IAudioEndpointVolume **ppv); extern HRESULT AudioEndpointVolume_Create(MMDevice *parent, IAudioEndpointVolume **ppv) DECLSPEC_HIDDEN;