wineoss.drv: Mark internal symbols with hidden visibility.

This commit is contained in:
Marcus Meissner 2011-05-28 10:49:32 +02:00 committed by Alexandre Julliard
parent 42ef8a5705
commit f8c8c13cc5
1 changed files with 13 additions and 13 deletions

View File

@ -158,26 +158,26 @@ typedef struct {
OSS_MSG_RING msgRing; OSS_MSG_RING msgRing;
} WINE_WAVEIN; } WINE_WAVEIN;
extern WINE_WAVEOUT WOutDev[MAX_WAVEDRV]; extern WINE_WAVEOUT WOutDev[MAX_WAVEDRV] DECLSPEC_HIDDEN;
extern WINE_WAVEIN WInDev[MAX_WAVEDRV]; extern WINE_WAVEIN WInDev[MAX_WAVEDRV] DECLSPEC_HIDDEN;
extern unsigned numOutDev; extern unsigned numOutDev DECLSPEC_HIDDEN;
extern unsigned numInDev; extern unsigned numInDev DECLSPEC_HIDDEN;
extern int getEnables(OSS_DEVICE *ossdev); extern int getEnables(OSS_DEVICE *ossdev) DECLSPEC_HIDDEN;
extern void copy_format(LPWAVEFORMATEX wf1, LPWAVEFORMATPCMEX wf2); extern void copy_format(LPWAVEFORMATEX wf1, LPWAVEFORMATPCMEX wf2) DECLSPEC_HIDDEN;
extern DWORD OSS_OpenDevice(OSS_DEVICE* ossdev, unsigned req_access, extern DWORD OSS_OpenDevice(OSS_DEVICE* ossdev, unsigned req_access,
int* frag, int strict_format, 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 */ /* dscapture.c */
extern DWORD widDsCreate(UINT wDevID, PIDSCDRIVER* drv); extern DWORD widDsCreate(UINT wDevID, PIDSCDRIVER* drv) DECLSPEC_HIDDEN;
extern DWORD widDsDesc(UINT wDevID, PDSDRIVERDESC desc); extern DWORD widDsDesc(UINT wDevID, PDSDRIVERDESC desc) DECLSPEC_HIDDEN;
/* dsrender.c */ /* dsrender.c */
extern DWORD wodDsCreate(UINT wDevID, PIDSDRIVER* drv); extern DWORD wodDsCreate(UINT wDevID, PIDSDRIVER* drv) DECLSPEC_HIDDEN;
extern DWORD wodDsDesc(UINT wDevID, PDSDRIVERDESC desc); extern DWORD wodDsDesc(UINT wDevID, PDSDRIVERDESC desc) DECLSPEC_HIDDEN;