devenum: Mark internal symbols as hidden.
This commit is contained in:
parent
fa6e4f3a3b
commit
455ef03cad
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue