Commit f5bc4432 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

wineoss.drv: Make widOpen() and wodOpen() static.

parent 05c08227
......@@ -1958,7 +1958,7 @@ static DWORD wodGetDevCaps(WORD wDevID, LPWAVEOUTCAPSW lpCaps, DWORD dwSize)
/**************************************************************************
* wodOpen [internal]
*/
DWORD wodOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
static DWORD wodOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
{
int audio_fragment;
WINE_WAVEOUT* wwo;
......@@ -2848,7 +2848,7 @@ static DWORD CALLBACK widRecorder(LPVOID pmt)
/**************************************************************************
* widOpen [internal]
*/
DWORD widOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
static DWORD widOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
{
WINE_WAVEIN* wwi;
audio_buf_info info;
......
......@@ -174,9 +174,7 @@ extern DWORD OSS_OpenDevice(OSS_DEVICE* ossdev, unsigned req_access,
extern void OSS_CloseDevice(OSS_DEVICE* ossdev);
extern DWORD wodOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags);
extern DWORD wodSetVolume(WORD wDevID, DWORD dwParam);
extern DWORD widOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags);
/* dscapture.c */
extern DWORD widDsCreate(UINT wDevID, PIDSCDRIVER* drv);
......
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