dmsynth: Mark internal symbols with hidden visibility.

oldstable
Marcus Meissner 2011-05-13 17:00:00 +02:00 committed by Alexandre Julliard
parent 1aee19753f
commit fa6e4f3a3b
1 changed files with 4 additions and 4 deletions

View File

@ -49,8 +49,8 @@ typedef struct IDirectMusicSynthSinkImpl IDirectMusicSynthSinkImpl;
/***************************************************************************** /*****************************************************************************
* ClassFactory * ClassFactory
*/ */
extern HRESULT WINAPI DMUSIC_CreateDirectMusicSynthImpl (LPCGUID lpcGUID, LPVOID* ppobj, LPUNKNOWN pUnkOuter); extern HRESULT WINAPI DMUSIC_CreateDirectMusicSynthImpl (LPCGUID lpcGUID, LPVOID* ppobj, LPUNKNOWN pUnkOuter) DECLSPEC_HIDDEN;
extern HRESULT WINAPI DMUSIC_CreateDirectMusicSynthSinkImpl (LPCGUID lpcGUID, LPVOID* ppobj, LPUNKNOWN pUnkOuter); extern HRESULT WINAPI DMUSIC_CreateDirectMusicSynthSinkImpl (LPCGUID lpcGUID, LPVOID* ppobj, LPUNKNOWN pUnkOuter) DECLSPEC_HIDDEN;
/***************************************************************************** /*****************************************************************************
* IDirectMusicSynth8Impl implementation structure * IDirectMusicSynth8Impl implementation structure
@ -81,7 +81,7 @@ struct IDirectMusicSynthSinkImpl {
/********************************************************************** /**********************************************************************
* Dll lifetime tracking declaration for dmsynth.dll * Dll lifetime tracking declaration for dmsynth.dll
*/ */
extern LONG DMSYNTH_refCount; extern LONG DMSYNTH_refCount DECLSPEC_HIDDEN;
static inline void DMSYNTH_LockModule(void) { InterlockedIncrement( &DMSYNTH_refCount ); } static inline void DMSYNTH_LockModule(void) { InterlockedIncrement( &DMSYNTH_refCount ); }
static inline void DMSYNTH_UnlockModule(void) { InterlockedDecrement( &DMSYNTH_refCount ); } static inline void DMSYNTH_UnlockModule(void) { InterlockedDecrement( &DMSYNTH_refCount ); }
@ -110,6 +110,6 @@ typedef struct {
#define GE(x) { &x, #x } #define GE(x) { &x, #x }
/* returns name of given GUID */ /* returns name of given GUID */
extern const char *debugstr_dmguid (const GUID *id); extern const char *debugstr_dmguid (const GUID *id) DECLSPEC_HIDDEN;
#endif /* __WINE_DMSYNTH_PRIVATE_H */ #endif /* __WINE_DMSYNTH_PRIVATE_H */