Module: wine Branch: master Commit: ba0841defa9ff23988569cc68fd921340026d47e URL: https://gitlab.winehq.org/wine/wine/-/commit/ba0841defa9ff23988569cc68fd9213...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Mon Jul 10 18:59:28 2023 +1000
adsldp: Remove DECLSPEC_HIDDEN usage.
---
dlls/adsldp/adsldp_private.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/adsldp/adsldp_private.h b/dlls/adsldp/adsldp_private.h index 14cfc0c359e..5d8b8177a7b 100644 --- a/dlls/adsldp/adsldp_private.h +++ b/dlls/adsldp/adsldp_private.h @@ -47,9 +47,9 @@ struct attribute_type int single_value; };
-DWORD map_ldap_error(DWORD) DECLSPEC_HIDDEN; -struct attribute_type *load_schema(LDAP *ld, ULONG *, ULONG *) DECLSPEC_HIDDEN; -ADSTYPEENUM get_schema_type(const WCHAR *, const struct attribute_type *, ULONG, ULONG) DECLSPEC_HIDDEN; -void free_attribute_types(struct attribute_type *, ULONG) DECLSPEC_HIDDEN; +DWORD map_ldap_error(DWORD); +struct attribute_type *load_schema(LDAP *ld, ULONG *, ULONG *); +ADSTYPEENUM get_schema_type(const WCHAR *, const struct attribute_type *, ULONG, ULONG); +void free_attribute_types(struct attribute_type *, ULONG);
#endif