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
f8c8c13c
Commit
f8c8c13c
authored
May 28, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
May 30, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineoss.drv: Mark internal symbols with hidden visibility.
parent
42ef8a57
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
audio.h
dlls/wineoss.drv/audio.h
+13
-13
No files found.
dlls/wineoss.drv/audio.h
View file @
f8c8c13c
...
...
@@ -158,26 +158,26 @@ typedef struct {
OSS_MSG_RING
msgRing
;
}
WINE_WAVEIN
;
extern
WINE_WAVEOUT
WOutDev
[
MAX_WAVEDRV
];
extern
WINE_WAVEIN
WInDev
[
MAX_WAVEDRV
];
extern
unsigned
numOutDev
;
extern
unsigned
numInDev
;
extern
WINE_WAVEOUT
WOutDev
[
MAX_WAVEDRV
]
DECLSPEC_HIDDEN
;
extern
WINE_WAVEIN
WInDev
[
MAX_WAVEDRV
]
DECLSPEC_HIDDEN
;
extern
unsigned
numOutDev
DECLSPEC_HIDDEN
;
extern
unsigned
numInDev
DECLSPEC_HIDDEN
;
extern
int
getEnables
(
OSS_DEVICE
*
ossdev
);
extern
void
copy_format
(
LPWAVEFORMATEX
wf1
,
LPWAVEFORMATPCMEX
wf2
);
extern
int
getEnables
(
OSS_DEVICE
*
ossdev
)
DECLSPEC_HIDDEN
;
extern
void
copy_format
(
LPWAVEFORMATEX
wf1
,
LPWAVEFORMATPCMEX
wf2
)
DECLSPEC_HIDDEN
;
extern
DWORD
OSS_OpenDevice
(
OSS_DEVICE
*
ossdev
,
unsigned
req_access
,
int
*
frag
,
int
strict_format
,
int
sample_rate
,
int
stereo
,
int
fmt
);
int
sample_rate
,
int
stereo
,
int
fmt
)
DECLSPEC_HIDDEN
;
extern
void
OSS_CloseDevice
(
OSS_DEVICE
*
ossdev
);
extern
void
OSS_CloseDevice
(
OSS_DEVICE
*
ossdev
)
DECLSPEC_HIDDEN
;
extern
DWORD
wodSetVolume
(
WORD
wDevID
,
DWORD
dwParam
);
extern
DWORD
wodSetVolume
(
WORD
wDevID
,
DWORD
dwParam
)
DECLSPEC_HIDDEN
;
/* dscapture.c */
extern
DWORD
widDsCreate
(
UINT
wDevID
,
PIDSCDRIVER
*
drv
);
extern
DWORD
widDsDesc
(
UINT
wDevID
,
PDSDRIVERDESC
desc
);
extern
DWORD
widDsCreate
(
UINT
wDevID
,
PIDSCDRIVER
*
drv
)
DECLSPEC_HIDDEN
;
extern
DWORD
widDsDesc
(
UINT
wDevID
,
PDSDRIVERDESC
desc
)
DECLSPEC_HIDDEN
;
/* dsrender.c */
extern
DWORD
wodDsCreate
(
UINT
wDevID
,
PIDSDRIVER
*
drv
);
extern
DWORD
wodDsDesc
(
UINT
wDevID
,
PDSDRIVERDESC
desc
);
extern
DWORD
wodDsCreate
(
UINT
wDevID
,
PIDSDRIVER
*
drv
)
DECLSPEC_HIDDEN
;
extern
DWORD
wodDsDesc
(
UINT
wDevID
,
PDSDRIVERDESC
desc
)
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