Alex Henrie : combase: Don't export hProxyDll or rpc_execute_call.
Module: wine Branch: master Commit: f9785543a85018eec6e1da52e790b321e9e9c8ee URL: https://gitlab.winehq.org/wine/wine/-/commit/f9785543a85018eec6e1da52e790b32... Author: Alex Henrie <alexhenrie24(a)gmail.com> Date: Fri Jun 16 21:20:00 2023 -0600 combase: Don't export hProxyDll or rpc_execute_call. --- dlls/combase/combase_private.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/combase/combase_private.h b/dlls/combase/combase_private.h index 19e3def0b4e..52facd44792 100644 --- a/dlls/combase/combase_private.h +++ b/dlls/combase/combase_private.h @@ -19,7 +19,7 @@ #include "wine/list.h" -extern HINSTANCE hProxyDll; +extern HINSTANCE hProxyDll DECLSPEC_HIDDEN; struct apartment { @@ -132,7 +132,7 @@ HRESULT rpc_register_channel_hook(REFGUID rguid, IChannelHook *hook) DECLSPEC_HI void rpc_unregister_channel_hooks(void) DECLSPEC_HIDDEN; struct dispatch_params; -void rpc_execute_call(struct dispatch_params *params); +void rpc_execute_call(struct dispatch_params *params) DECLSPEC_HIDDEN; enum class_reg_data_origin {
participants (1)
-
Alexandre Julliard