Module: wine Branch: master Commit: 04bb05001692cfc4db57722db33b5bf942766f97 URL: https://gitlab.winehq.org/wine/wine/-/commit/04bb05001692cfc4db57722db33b5bf...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Wed Jul 12 17:42:53 2023 +1000
taskschd: Remove DECLSPEC_HIDDEN usage.
---
dlls/taskschd/taskschd_private.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/dlls/taskschd/taskschd_private.h b/dlls/taskschd/taskschd_private.h index 8f83c9f42bd..cf5b3b17ae4 100644 --- a/dlls/taskschd/taskschd_private.h +++ b/dlls/taskschd/taskschd_private.h @@ -19,14 +19,14 @@ #ifndef __WINE_TASKSCHD_PRIVATE_H__ #define __WINE_TASKSCHD_PRIVATE_H__
-HRESULT TaskService_create(void **obj) DECLSPEC_HIDDEN; -HRESULT TaskDefinition_create(ITaskDefinition **obj) DECLSPEC_HIDDEN; -HRESULT TaskFolder_create(const WCHAR *parent, const WCHAR *path, ITaskFolder **obj, BOOL create) DECLSPEC_HIDDEN; -HRESULT TaskFolderCollection_create(const WCHAR *path, ITaskFolderCollection **obj) DECLSPEC_HIDDEN; +HRESULT TaskService_create(void **obj); +HRESULT TaskDefinition_create(ITaskDefinition **obj); +HRESULT TaskFolder_create(const WCHAR *parent, const WCHAR *path, ITaskFolder **obj, BOOL create); +HRESULT TaskFolderCollection_create(const WCHAR *path, ITaskFolderCollection **obj); HRESULT RegisteredTask_create(const WCHAR *path, const WCHAR *name, ITaskDefinition *definition, LONG flags, - TASK_LOGON_TYPE logon, IRegisteredTask **obj, BOOL create) DECLSPEC_HIDDEN; -HRESULT RegisteredTaskCollection_create(const WCHAR *path, IRegisteredTaskCollection **obj) DECLSPEC_HIDDEN; + TASK_LOGON_TYPE logon, IRegisteredTask **obj, BOOL create); +HRESULT RegisteredTaskCollection_create(const WCHAR *path, IRegisteredTaskCollection **obj);
-WCHAR *get_full_path(const WCHAR *parent, const WCHAR *path) DECLSPEC_HIDDEN; +WCHAR *get_full_path(const WCHAR *parent, const WCHAR *path);
#endif /* __WINE_TASKSCHD_PRIVATE_H__ */