Marcus Meissner : wininet: Mark internal symbols with hidden visibility.

Alexandre Julliard julliard at winehq.org
Thu May 26 10:56:25 CDT 2011


Module: wine
Branch: master
Commit: c0ad2d4a9235c14806c24c98d073d062b137f984
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c0ad2d4a9235c14806c24c98d073d062b137f984

Author: Marcus Meissner <meissner at suse.de>
Date:   Wed May 25 19:09:51 2011 +0200

wininet: Mark internal symbols with hidden visibility.

---

 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




More information about the wine-cvs mailing list