mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
mmdevapi: Mark internal symbols with hidden visibility.
This commit is contained in:
parent
340be4feb7
commit
dc5c9c5595
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user