Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
dc5c9c55
Commit
dc5c9c55
authored
May 13, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
May 20, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmdevapi: Mark internal symbols with hidden visibility.
parent
340be4fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
mmdevapi.h
dlls/mmdevapi/mmdevapi.h
+6
-6
No files found.
dlls/mmdevapi/mmdevapi.h
View file @
dc5c9c55
...
...
@@ -20,10 +20,10 @@
# error You must include config.h to use this header
#endif
extern
HRESULT
MMDevEnum_Create
(
REFIID
riid
,
void
**
ppv
);
extern
void
MMDevEnum_Free
(
void
);
extern
HRESULT
MMDevEnum_Create
(
REFIID
riid
,
void
**
ppv
)
DECLSPEC_HIDDEN
;
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
{
HMODULE
module
;
...
...
@@ -39,7 +39,7 @@ typedef struct _DriverFuncs {
EDataFlow
dataflow
,
IAudioClient
**
out
);
}
DriverFuncs
;
extern
DriverFuncs
drvs
;
extern
DriverFuncs
drvs
DECLSPEC_HIDDEN
;
typedef
struct
MMDevice
{
IMMDevice
IMMDevice_iface
;
...
...
@@ -55,5 +55,5 @@ typedef struct MMDevice {
void
*
key
;
}
MMDevice
;
extern
HRESULT
AudioClient_Create
(
MMDevice
*
parent
,
IAudioClient
**
ppv
);
extern
HRESULT
AudioEndpointVolume_Create
(
MMDevice
*
parent
,
IAudioEndpointVolume
**
ppv
);
extern
HRESULT
AudioClient_Create
(
MMDevice
*
parent
,
IAudioClient
**
ppv
)
DECLSPEC_HIDDEN
;
extern
HRESULT
AudioEndpointVolume_Create
(
MMDevice
*
parent
,
IAudioEndpointVolume
**
ppv
)
DECLSPEC_HIDDEN
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment