[PATCH] explorerframe: Mark internal symbols with hidden visibility

Marcus Meissner meissner at suse.de
Fri May 13 10:07:41 CDT 2011


---
 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 */
-- 
1.7.1



More information about the wine-patches mailing list