Marcus Meissner : hhctrl.ocx: Mark internal symbols with hidden visibility.

Alexandre Julliard julliard at winehq.org
Thu May 19 13:32:08 CDT 2011


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

Author: Marcus Meissner <meissner at suse.de>
Date:   Fri May 13 17:12:09 2011 +0200

hhctrl.ocx: Mark internal symbols with hidden visibility.

---

 dlls/hhctrl.ocx/hhctrl.h |   46 +++++++++++++++++++++++-----------------------
 dlls/hhctrl.ocx/stream.h |   16 ++++++++--------
 2 files changed, 31 insertions(+), 31 deletions(-)

diff --git a/dlls/hhctrl.ocx/hhctrl.h b/dlls/hhctrl.ocx/hhctrl.h
index c0ec009..1d45201 100644
--- a/dlls/hhctrl.ocx/hhctrl.h
+++ b/dlls/hhctrl.ocx/hhctrl.h
@@ -162,32 +162,32 @@ typedef struct {
     DWORD current_tab;
 } HHInfo;
 
-BOOL InitWebBrowser(HHInfo*,HWND);
-void ReleaseWebBrowser(HHInfo*);
-void ResizeWebBrowser(HHInfo*,DWORD,DWORD);
-void DoPageAction(HHInfo*,DWORD);
+BOOL InitWebBrowser(HHInfo*,HWND) DECLSPEC_HIDDEN;
+void ReleaseWebBrowser(HHInfo*) DECLSPEC_HIDDEN;
+void ResizeWebBrowser(HHInfo*,DWORD,DWORD) DECLSPEC_HIDDEN;
+void DoPageAction(HHInfo*,DWORD) DECLSPEC_HIDDEN;
 
-void InitContent(HHInfo*);
-void ReleaseContent(HHInfo*);
-void ActivateContentTopic(HWND,LPCWSTR,ContentItem *);
+void InitContent(HHInfo*) DECLSPEC_HIDDEN;
+void ReleaseContent(HHInfo*) DECLSPEC_HIDDEN;
+void ActivateContentTopic(HWND,LPCWSTR,ContentItem *) DECLSPEC_HIDDEN;
 
-void InitIndex(HHInfo*);
-void ReleaseIndex(HHInfo*);
+void InitIndex(HHInfo*) DECLSPEC_HIDDEN;
+void ReleaseIndex(HHInfo*) DECLSPEC_HIDDEN;
 
-CHMInfo *OpenCHM(LPCWSTR szFile);
-BOOL LoadWinTypeFromCHM(HHInfo *info);
-CHMInfo *CloseCHM(CHMInfo *pCHMInfo);
-void SetChmPath(ChmPath*,LPCWSTR,LPCWSTR);
-IStream *GetChmStream(CHMInfo*,LPCWSTR,ChmPath*);
-LPWSTR FindContextAlias(CHMInfo*,DWORD);
+CHMInfo *OpenCHM(LPCWSTR szFile) DECLSPEC_HIDDEN;
+BOOL LoadWinTypeFromCHM(HHInfo *info) DECLSPEC_HIDDEN;
+CHMInfo *CloseCHM(CHMInfo *pCHMInfo) DECLSPEC_HIDDEN;
+void SetChmPath(ChmPath*,LPCWSTR,LPCWSTR) DECLSPEC_HIDDEN;
+IStream *GetChmStream(CHMInfo*,LPCWSTR,ChmPath*) DECLSPEC_HIDDEN;
+LPWSTR FindContextAlias(CHMInfo*,DWORD) DECLSPEC_HIDDEN;
 
-HHInfo *CreateHelpViewer(LPCWSTR);
-void ReleaseHelpViewer(HHInfo*);
-BOOL NavigateToUrl(HHInfo*,LPCWSTR);
-BOOL NavigateToChm(HHInfo*,LPCWSTR,LPCWSTR);
+HHInfo *CreateHelpViewer(LPCWSTR) DECLSPEC_HIDDEN;
+void ReleaseHelpViewer(HHInfo*) DECLSPEC_HIDDEN;
+BOOL NavigateToUrl(HHInfo*,LPCWSTR) DECLSPEC_HIDDEN;
+BOOL NavigateToChm(HHInfo*,LPCWSTR,LPCWSTR) DECLSPEC_HIDDEN;
 
-void InitSearch(HHInfo *info, const char *needle);
-void ReleaseSearch(HHInfo *info);
+void InitSearch(HHInfo *info, const char *needle) DECLSPEC_HIDDEN;
+void ReleaseSearch(HHInfo *info) DECLSPEC_HIDDEN;
 
 /* memory allocation functions */
 
@@ -261,7 +261,7 @@ static inline LPWSTR strdupAtoW(LPCSTR str)
 
 
 
-extern HINSTANCE hhctrl_hinstance;
-extern BOOL hh_process;
+extern HINSTANCE hhctrl_hinstance DECLSPEC_HIDDEN;
+extern BOOL hh_process DECLSPEC_HIDDEN;
 
 #endif
diff --git a/dlls/hhctrl.ocx/stream.h b/dlls/hhctrl.ocx/stream.h
index 3996c09..524109f 100644
--- a/dlls/hhctrl.ocx/stream.h
+++ b/dlls/hhctrl.ocx/stream.h
@@ -34,13 +34,13 @@ typedef struct {
     ULONG p;
 } stream_t;
 
-void strbuf_init(strbuf_t *buf);
-void strbuf_zero(strbuf_t *buf);
-void strbuf_free(strbuf_t *buf);
-void stream_init(stream_t *stream, IStream *str);
-void get_node_name(strbuf_t *node, strbuf_t *name);
-BOOL next_content(stream_t *stream, strbuf_t *buf);
-BOOL next_node(stream_t *stream, strbuf_t *buf);
-const char *get_attr(const char *node, const char *name, int *len);
+void strbuf_init(strbuf_t *buf) DECLSPEC_HIDDEN;
+void strbuf_zero(strbuf_t *buf) DECLSPEC_HIDDEN;
+void strbuf_free(strbuf_t *buf) DECLSPEC_HIDDEN;
+void stream_init(stream_t *stream, IStream *str) DECLSPEC_HIDDEN;
+void get_node_name(strbuf_t *node, strbuf_t *name) DECLSPEC_HIDDEN;
+BOOL next_content(stream_t *stream, strbuf_t *buf) DECLSPEC_HIDDEN;
+BOOL next_node(stream_t *stream, strbuf_t *buf) DECLSPEC_HIDDEN;
+const char *get_attr(const char *node, const char *name, int *len) DECLSPEC_HIDDEN;
 
 #endif




More information about the wine-cvs mailing list