devenum: Mark internal symbols as hidden.

This commit is contained in:
Marcus Meissner 2011-05-13 16:43:26 +02:00 committed by Alexandre Julliard
parent fa6e4f3a3b
commit 455ef03cad
2 changed files with 9 additions and 9 deletions

View File

@ -25,8 +25,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(devenum); WINE_DEFAULT_DEBUG_CHANNEL(devenum);
LONG dll_refs; DECLSPEC_HIDDEN LONG dll_refs;
HINSTANCE DEVENUM_hInstance; DECLSPEC_HIDDEN HINSTANCE DEVENUM_hInstance;
typedef struct typedef struct
{ {

View File

@ -47,7 +47,7 @@
/********************************************************************** /**********************************************************************
* Dll lifetime tracking declaration for devenum.dll * Dll lifetime tracking declaration for devenum.dll
*/ */
extern LONG dll_refs; extern LONG dll_refs DECLSPEC_HIDDEN;
static inline void DEVENUM_LockModule(void) { InterlockedIncrement(&dll_refs); } static inline void DEVENUM_LockModule(void) { InterlockedIncrement(&dll_refs); }
static inline void DEVENUM_UnlockModule(void) { InterlockedDecrement(&dll_refs); } static inline void DEVENUM_UnlockModule(void) { InterlockedDecrement(&dll_refs); }
@ -85,17 +85,17 @@ typedef struct
HKEY hkey; HKEY hkey;
} MediaCatMoniker; } MediaCatMoniker;
MediaCatMoniker * DEVENUM_IMediaCatMoniker_Construct(void); MediaCatMoniker * DEVENUM_IMediaCatMoniker_Construct(void) DECLSPEC_HIDDEN;
HRESULT DEVENUM_IEnumMoniker_Construct(HKEY hkey, IEnumMoniker ** ppEnumMoniker); HRESULT DEVENUM_IEnumMoniker_Construct(HKEY hkey, IEnumMoniker ** ppEnumMoniker) DECLSPEC_HIDDEN;
extern ClassFactoryImpl DEVENUM_ClassFactory; extern ClassFactoryImpl DEVENUM_ClassFactory DECLSPEC_HIDDEN;
extern CreateDevEnumImpl DEVENUM_CreateDevEnum; extern CreateDevEnumImpl DEVENUM_CreateDevEnum DECLSPEC_HIDDEN;
extern ParseDisplayNameImpl DEVENUM_ParseDisplayName; extern ParseDisplayNameImpl DEVENUM_ParseDisplayName DECLSPEC_HIDDEN;
/********************************************************************** /**********************************************************************
* Private helper function to get AM filter category key location * Private helper function to get AM filter category key location
*/ */
HRESULT DEVENUM_GetCategoryKey(REFCLSID clsidDeviceClass, HKEY *pBaseKey, WCHAR *wszRegKeyName, UINT maxLen); HRESULT DEVENUM_GetCategoryKey(REFCLSID clsidDeviceClass, HKEY *pBaseKey, WCHAR *wszRegKeyName, UINT maxLen) DECLSPEC_HIDDEN;
/********************************************************************** /**********************************************************************
* Global string constant declarations * Global string constant declarations