Commit 2705a96a authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

winealsa.drv: Declare a function static.

parent f4f5ee15
...@@ -171,7 +171,6 @@ extern DWORD ALSA_WidNumDevs; ...@@ -171,7 +171,6 @@ extern DWORD ALSA_WidNumDevs;
extern WINE_WAVEDEV *WOutDev; extern WINE_WAVEDEV *WOutDev;
extern DWORD ALSA_WodNumMallocedDevs; extern DWORD ALSA_WodNumMallocedDevs;
extern DWORD ALSA_WodNumDevs; extern DWORD ALSA_WodNumDevs;
DWORD wodSetVolume(WORD wDevID, DWORD dwParam);
/* alsa.c */ /* alsa.c */
int ALSA_InitRingMessage(ALSA_MSG_RING* omr); int ALSA_InitRingMessage(ALSA_MSG_RING* omr);
......
...@@ -1094,7 +1094,7 @@ static DWORD wodGetVolume(WORD wDevID, LPDWORD lpdwVol) ...@@ -1094,7 +1094,7 @@ static DWORD wodGetVolume(WORD wDevID, LPDWORD lpdwVol)
/************************************************************************** /**************************************************************************
* wodSetVolume [internal] * wodSetVolume [internal]
*/ */
DWORD wodSetVolume(WORD wDevID, DWORD dwParam) static DWORD wodSetVolume(WORD wDevID, DWORD dwParam)
{ {
WORD wleft, wright; WORD wleft, wright;
WINE_WAVEDEV* wwo; WINE_WAVEDEV* wwo;
......
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