[PATCH] wininet: Mark internal symbols with hidden visibility

Marcus Meissner meissner at suse.de
Wed May 25 11:53:39 CDT 2011


---
 dlls/wininet/internet.h |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/wininet/internet.h b/dlls/wininet/internet.h
index aedb265..a7af629 100644
--- a/dlls/wininet/internet.h
+++ b/dlls/wininet/internet.h
@@ -47,7 +47,7 @@
 #define ioctlsocket ioctl
 #endif /* __MINGW32__ */
 
-extern HMODULE WININET_hModule;
+extern HMODULE WININET_hModule DECLSPEC_HIDDEN;
 
 #ifndef INET6_ADDRSTRLEN
 #define INET6_ADDRSTRLEN 46
@@ -67,9 +67,9 @@ typedef struct {
     struct list conn_pool;
 } server_t;
 
-void server_addref(server_t*);
-void server_release(server_t*);
-BOOL collect_connections(BOOL);
+void server_addref(server_t*) DECLSPEC_HIDDEN;
+void server_release(server_t*) DECLSPEC_HIDDEN;
+BOOL collect_connections(BOOL) DECLSPEC_HIDDEN;
 
 /* used for netconnection.c stuff */
 typedef struct
-- 
1.7.1



More information about the wine-patches mailing list