Module: wine Branch: master Commit: d8ce4f61b1f0a29e25a375215503354985c38195 URL: https://gitlab.winehq.org/wine/wine/-/commit/d8ce4f61b1f0a29e25a375215503354...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Wed Nov 8 17:35:28 2023 +1100
advpack: Remove DECLSPEC_HIDDEN usage.
---
dlls/advpack/advpack_private.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/advpack/advpack_private.h b/dlls/advpack/advpack_private.h index 81ca3ed3903..8865e58d0aa 100644 --- a/dlls/advpack/advpack_private.h +++ b/dlls/advpack/advpack_private.h @@ -21,11 +21,11 @@ #ifndef __ADVPACK_PRIVATE_H #define __ADVPACK_PRIVATE_H
-HRESULT do_ocx_reg(HMODULE hocx, BOOL do_reg, const WCHAR *flags, const WCHAR *param) DECLSPEC_HIDDEN; -LPWSTR get_parameter(LPWSTR *params, WCHAR separator, BOOL quoted) DECLSPEC_HIDDEN; -void set_ldids(HINF hInf, LPCWSTR pszInstallSection, LPCWSTR pszWorkingDir) DECLSPEC_HIDDEN; +HRESULT do_ocx_reg(HMODULE hocx, BOOL do_reg, const WCHAR *flags, const WCHAR *param); +LPWSTR get_parameter(LPWSTR *params, WCHAR separator, BOOL quoted); +void set_ldids(HINF hInf, LPCWSTR pszInstallSection, LPCWSTR pszWorkingDir);
-HRESULT launch_exe(LPCWSTR cmd, LPCWSTR dir, HANDLE *phEXE) DECLSPEC_HIDDEN; +HRESULT launch_exe(LPCWSTR cmd, LPCWSTR dir, HANDLE *phEXE);
static inline char *strdupWtoA(const WCHAR *str) {