Module: wine Branch: master Commit: 580fb24708764ad5fbad4c28d70d5fcdf8932320 URL: https://gitlab.winehq.org/wine/wine/-/commit/580fb24708764ad5fbad4c28d70d5fc...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Wed Nov 8 17:35:28 2023 +1100
sti: Remove DECLSPEC_HIDDEN usage.
---
dlls/sti/sti_main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/sti/sti_main.c b/dlls/sti/sti_main.c index 4ae8a337f8a..2f89d72a814 100644 --- a/dlls/sti/sti_main.c +++ b/dlls/sti/sti_main.c @@ -34,10 +34,10 @@
WINE_DEFAULT_DEBUG_CHANNEL(sti);
-extern HRESULT WINAPI STI_DllGetClassObject(REFCLSID, REFIID, LPVOID *) DECLSPEC_HIDDEN; -extern BOOL WINAPI STI_DllMain(HINSTANCE, DWORD, LPVOID) DECLSPEC_HIDDEN; -extern HRESULT WINAPI STI_DllRegisterServer(void) DECLSPEC_HIDDEN; -extern HRESULT WINAPI STI_DllUnregisterServer(void) DECLSPEC_HIDDEN; +extern HRESULT WINAPI STI_DllGetClassObject(REFCLSID, REFIID, LPVOID *); +extern BOOL WINAPI STI_DllMain(HINSTANCE, DWORD, LPVOID); +extern HRESULT WINAPI STI_DllRegisterServer(void); +extern HRESULT WINAPI STI_DllUnregisterServer(void);
typedef HRESULT (*fnCreateInstance)(REFIID riid, IUnknown *pUnkOuter, LPVOID *ppObj);