Module: wine Branch: master Commit: b97b2fbf0005b4348d71c8b5da50f1884d9c2118 URL: https://gitlab.winehq.org/wine/wine/-/commit/b97b2fbf0005b4348d71c8b5da50f18...
Author: Alex Henrie alexhenrie24@gmail.com Date: Fri Jun 16 22:14:06 2023 -0600
urlmon: Don't export urlmon_instance.
---
dlls/urlmon/urlmon_main.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/urlmon/urlmon_main.h b/dlls/urlmon/urlmon_main.h index 10e5d8447fa..b1a255a125c 100644 --- a/dlls/urlmon/urlmon_main.h +++ b/dlls/urlmon/urlmon_main.h @@ -61,7 +61,7 @@ extern LONG URLMON_refCount DECLSPEC_HIDDEN; static inline void URLMON_LockModule(void) { InterlockedIncrement( &URLMON_refCount ); } static inline void URLMON_UnlockModule(void) { InterlockedDecrement( &URLMON_refCount ); }
-extern HINSTANCE urlmon_instance; +extern HINSTANCE urlmon_instance DECLSPEC_HIDDEN;
IInternetProtocolInfo *get_protocol_info(LPCWSTR) DECLSPEC_HIDDEN; HRESULT get_protocol_handler(IUri*,CLSID*,IClassFactory**) DECLSPEC_HIDDEN;