Module: wine Branch: master Commit: 741985693ddf92fe2988e3427f2fe74e83a306f9 URL: https://gitlab.winehq.org/wine/wine/-/commit/741985693ddf92fe2988e3427f2fe74...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Nov 24 11:34:24 2023 +0100
ws2_32: Remove DECLSPEC_HIDDEN usage.
---
dlls/ws2_32/ws2_32_private.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/ws2_32/ws2_32_private.h b/dlls/ws2_32/ws2_32_private.h index a009a1eefd3..9e116de814d 100644 --- a/dlls/ws2_32/ws2_32_private.h +++ b/dlls/ws2_32/ws2_32_private.h @@ -73,7 +73,7 @@ static inline char *strdupWtoA( const WCHAR *str )
static const char magic_loopback_addr[] = {127, 12, 34, 56};
-const char *debugstr_sockaddr( const struct sockaddr *addr ) DECLSPEC_HIDDEN; +const char *debugstr_sockaddr( const struct sockaddr *addr );
struct per_thread_data { @@ -88,9 +88,9 @@ struct per_thread_data char ntoa_buffer[16]; /* 4*3 digits + 3 '.' + 1 '\0' */ };
-extern int num_startup DECLSPEC_HIDDEN; +extern int num_startup;
-struct per_thread_data *get_per_thread_data(void) DECLSPEC_HIDDEN; +struct per_thread_data *get_per_thread_data(void);
struct getaddrinfo_params {