Alistair Leslie-Hughes : explorerframe: Remove DECLSPEC_HIDDEN usage.
Module: wine Branch: master Commit: 086e54320bae9ff16be8f0d5f2d6a981dc79f029 URL: https://gitlab.winehq.org/wine/wine/-/commit/086e54320bae9ff16be8f0d5f2d6a98... Author: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> Date: Mon Jul 10 18:59:29 2023 +1000 explorerframe: Remove DECLSPEC_HIDDEN usage. --- dlls/explorerframe/explorerframe_main.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dlls/explorerframe/explorerframe_main.h b/dlls/explorerframe/explorerframe_main.h index 14e551c48d1..0a8276a2eef 100644 --- a/dlls/explorerframe/explorerframe_main.h +++ b/dlls/explorerframe/explorerframe_main.h @@ -25,13 +25,13 @@ #include "shlobj.h" -extern HINSTANCE explorerframe_hinstance DECLSPEC_HIDDEN; +extern HINSTANCE explorerframe_hinstance; -extern LONG EFRAME_refCount DECLSPEC_HIDDEN; +extern LONG EFRAME_refCount; 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) DECLSPEC_HIDDEN; -HRESULT TaskbarList_Constructor(IUnknown*,REFIID,void**) DECLSPEC_HIDDEN; +HRESULT NamespaceTreeControl_Constructor(IUnknown *pUnkOuter, REFIID riid, void **ppv); +HRESULT TaskbarList_Constructor(IUnknown*,REFIID,void**); #endif /* __WINE_EXPLORERFRAME_H */
participants (1)
-
Alexandre Julliard