Module: wine Branch: master Commit: 55ba9b17a42c624c9b3dd57b0a69cbe463841d56 URL: https://gitlab.winehq.org/wine/wine/-/commit/55ba9b17a42c624c9b3dd57b0a69cbe...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Wed Sep 13 18:04:17 2023 +1000
wshom.ocx: Remove DECLSPEC_HIDDEN usage.
---
dlls/wshom.ocx/wshom_private.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/wshom.ocx/wshom_private.h b/dlls/wshom.ocx/wshom_private.h index 709b8817342..8e7792c871c 100644 --- a/dlls/wshom.ocx/wshom_private.h +++ b/dlls/wshom.ocx/wshom_private.h @@ -37,7 +37,7 @@ typedef enum tid_t { LAST_tid } tid_t;
-HRESULT get_typeinfo(tid_t tid, ITypeInfo **typeinfo) DECLSPEC_HIDDEN; +HRESULT get_typeinfo(tid_t tid, ITypeInfo **typeinfo);
struct provideclassinfo { IProvideClassInfo IProvideClassInfo_iface; @@ -45,7 +45,7 @@ struct provideclassinfo { const GUID *guid; };
-extern void init_classinfo(const GUID *guid, IUnknown *outer, struct provideclassinfo *classinfo) DECLSPEC_HIDDEN; +extern void init_classinfo(const GUID *guid, IUnknown *outer, struct provideclassinfo *classinfo);
-HRESULT WINAPI WshShellFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN; -HRESULT WINAPI WshNetworkFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN; +HRESULT WINAPI WshShellFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**); +HRESULT WINAPI WshNetworkFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**);