Marcus Meissner : wineoss.drv: Mark internal symbols with hidden visibility .

Alexandre Julliard julliard at winehq.org
Mon May 30 12:41:16 CDT 2011


Module: wine
Branch: master
Commit: f8c8c13cc5d6d28ed8b60eab82f9fc0dabfd6f8c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f8c8c13cc5d6d28ed8b60eab82f9fc0dabfd6f8c

Author: Marcus Meissner <meissner at suse.de>
Date:   Sat May 28 10:49:32 2011 +0200

wineoss.drv: Mark internal symbols with hidden visibility.

---

 dlls/wineoss.drv/audio.h |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/dlls/wineoss.drv/audio.h b/dlls/wineoss.drv/audio.h
index 602e842..c917196 100644
--- a/dlls/wineoss.drv/audio.h
+++ b/dlls/wineoss.drv/audio.h
@@ -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;




More information about the wine-cvs mailing list