Marcus Meissner : explorerframe: Mark internal symbols with hidden visibility.
Module: wine Branch: master Commit: d98a6a884e7e9fe6561662c64f3ca03a5a7501e8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d98a6a884e7e9fe6561662c64f... Author: Marcus Meissner <meissner(a)suse.de> Date: Fri May 13 17:07:41 2011 +0200 explorerframe: Mark internal symbols with hidden visibility. --- dlls/explorerframe/explorerframe_main.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/explorerframe/explorerframe_main.h b/dlls/explorerframe/explorerframe_main.h index 09a50de..7fc2b45 100644 --- a/dlls/explorerframe/explorerframe_main.h +++ b/dlls/explorerframe/explorerframe_main.h @@ -26,12 +26,12 @@ /* Not declared in commctrl.h ("for internal use (msdn)") */ #define TVS_EX_NOSINGLECOLLAPSE 0x0001 -extern HINSTANCE explorerframe_hinstance; +extern HINSTANCE explorerframe_hinstance DECLSPEC_HIDDEN; -extern LONG EFRAME_refCount; +extern LONG EFRAME_refCount DECLSPEC_HIDDEN; static inline void EFRAME_LockModule(void) { InterlockedIncrement( &EFRAME_refCount ); } static inline void EFRAME_UnlockModule(void) { InterlockedDecrement( &EFRAME_refCount ); } -HRESULT NamespaceTreeControl_Constructor(IUnknown *pUnkOuter, REFIID riid, void **ppv); +HRESULT NamespaceTreeControl_Constructor(IUnknown *pUnkOuter, REFIID riid, void **ppv) DECLSPEC_HIDDEN; #endif /* __WINE_EXPLORERFRAME_H */
participants (1)
-
Alexandre Julliard