From b97b2fbf0005b4348d71c8b5da50f1884d9c2118 Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Fri, 16 Jun 2023 22:14:06 -0600 Subject: [PATCH] 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;