Module: wine Branch: master Commit: 30c67775f0c8978cc01a897889ccac4f6ac465a4 URL: https://gitlab.winehq.org/wine/wine/-/commit/30c67775f0c8978cc01a897889ccac4...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Sat Jul 29 18:15:52 2023 +1000
wuapi: Remove DECLSPEC_HIDDEN usage.
---
dlls/wuapi/wuapi_private.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/dlls/wuapi/wuapi_private.h b/dlls/wuapi/wuapi_private.h index 62b6dec521f..1c350032e5a 100644 --- a/dlls/wuapi/wuapi_private.h +++ b/dlls/wuapi/wuapi_private.h @@ -16,9 +16,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */
-extern HRESULT AutomaticUpdates_create( LPVOID *ppObj ) DECLSPEC_HIDDEN; -extern HRESULT UpdateSession_create( LPVOID *ppObj ) DECLSPEC_HIDDEN; -extern HRESULT UpdateSearcher_create( LPVOID *ppObj ) DECLSPEC_HIDDEN; -extern HRESULT UpdateDownloader_create( LPVOID *ppObj ) DECLSPEC_HIDDEN; -extern HRESULT UpdateInstaller_create( LPVOID *ppObj ) DECLSPEC_HIDDEN; -extern HRESULT SystemInformation_create( LPVOID *ppObj ) DECLSPEC_HIDDEN; +extern HRESULT AutomaticUpdates_create( LPVOID *ppObj ); +extern HRESULT UpdateSession_create( LPVOID *ppObj ); +extern HRESULT UpdateSearcher_create( LPVOID *ppObj ); +extern HRESULT UpdateDownloader_create( LPVOID *ppObj ); +extern HRESULT UpdateInstaller_create( LPVOID *ppObj ); +extern HRESULT SystemInformation_create( LPVOID *ppObj );