Commit 3d6e7a4c authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

hhctrl.ocx: Mark internal symbols with hidden visibility.

parent ac1550bd
...@@ -162,32 +162,32 @@ typedef struct { ...@@ -162,32 +162,32 @@ typedef struct {
DWORD current_tab; DWORD current_tab;
} HHInfo; } HHInfo;
BOOL InitWebBrowser(HHInfo*,HWND); BOOL InitWebBrowser(HHInfo*,HWND) DECLSPEC_HIDDEN;
void ReleaseWebBrowser(HHInfo*); void ReleaseWebBrowser(HHInfo*) DECLSPEC_HIDDEN;
void ResizeWebBrowser(HHInfo*,DWORD,DWORD); void ResizeWebBrowser(HHInfo*,DWORD,DWORD) DECLSPEC_HIDDEN;
void DoPageAction(HHInfo*,DWORD); void DoPageAction(HHInfo*,DWORD) DECLSPEC_HIDDEN;
void InitContent(HHInfo*); void InitContent(HHInfo*) DECLSPEC_HIDDEN;
void ReleaseContent(HHInfo*); void ReleaseContent(HHInfo*) DECLSPEC_HIDDEN;
void ActivateContentTopic(HWND,LPCWSTR,ContentItem *); void ActivateContentTopic(HWND,LPCWSTR,ContentItem *) DECLSPEC_HIDDEN;
void InitIndex(HHInfo*); void InitIndex(HHInfo*) DECLSPEC_HIDDEN;
void ReleaseIndex(HHInfo*); void ReleaseIndex(HHInfo*) DECLSPEC_HIDDEN;
CHMInfo *OpenCHM(LPCWSTR szFile); CHMInfo *OpenCHM(LPCWSTR szFile) DECLSPEC_HIDDEN;
BOOL LoadWinTypeFromCHM(HHInfo *info); BOOL LoadWinTypeFromCHM(HHInfo *info) DECLSPEC_HIDDEN;
CHMInfo *CloseCHM(CHMInfo *pCHMInfo); CHMInfo *CloseCHM(CHMInfo *pCHMInfo) DECLSPEC_HIDDEN;
void SetChmPath(ChmPath*,LPCWSTR,LPCWSTR); void SetChmPath(ChmPath*,LPCWSTR,LPCWSTR) DECLSPEC_HIDDEN;
IStream *GetChmStream(CHMInfo*,LPCWSTR,ChmPath*); IStream *GetChmStream(CHMInfo*,LPCWSTR,ChmPath*) DECLSPEC_HIDDEN;
LPWSTR FindContextAlias(CHMInfo*,DWORD); LPWSTR FindContextAlias(CHMInfo*,DWORD) DECLSPEC_HIDDEN;
HHInfo *CreateHelpViewer(LPCWSTR); HHInfo *CreateHelpViewer(LPCWSTR) DECLSPEC_HIDDEN;
void ReleaseHelpViewer(HHInfo*); void ReleaseHelpViewer(HHInfo*) DECLSPEC_HIDDEN;
BOOL NavigateToUrl(HHInfo*,LPCWSTR); BOOL NavigateToUrl(HHInfo*,LPCWSTR) DECLSPEC_HIDDEN;
BOOL NavigateToChm(HHInfo*,LPCWSTR,LPCWSTR); BOOL NavigateToChm(HHInfo*,LPCWSTR,LPCWSTR) DECLSPEC_HIDDEN;
void InitSearch(HHInfo *info, const char *needle); void InitSearch(HHInfo *info, const char *needle) DECLSPEC_HIDDEN;
void ReleaseSearch(HHInfo *info); void ReleaseSearch(HHInfo *info) DECLSPEC_HIDDEN;
/* memory allocation functions */ /* memory allocation functions */
...@@ -261,7 +261,7 @@ static inline LPWSTR strdupAtoW(LPCSTR str) ...@@ -261,7 +261,7 @@ static inline LPWSTR strdupAtoW(LPCSTR str)
extern HINSTANCE hhctrl_hinstance; extern HINSTANCE hhctrl_hinstance DECLSPEC_HIDDEN;
extern BOOL hh_process; extern BOOL hh_process DECLSPEC_HIDDEN;
#endif #endif
...@@ -34,13 +34,13 @@ typedef struct { ...@@ -34,13 +34,13 @@ typedef struct {
ULONG p; ULONG p;
} stream_t; } stream_t;
void strbuf_init(strbuf_t *buf); void strbuf_init(strbuf_t *buf) DECLSPEC_HIDDEN;
void strbuf_zero(strbuf_t *buf); void strbuf_zero(strbuf_t *buf) DECLSPEC_HIDDEN;
void strbuf_free(strbuf_t *buf); void strbuf_free(strbuf_t *buf) DECLSPEC_HIDDEN;
void stream_init(stream_t *stream, IStream *str); void stream_init(stream_t *stream, IStream *str) DECLSPEC_HIDDEN;
void get_node_name(strbuf_t *node, strbuf_t *name); void get_node_name(strbuf_t *node, strbuf_t *name) DECLSPEC_HIDDEN;
BOOL next_content(stream_t *stream, strbuf_t *buf); BOOL next_content(stream_t *stream, strbuf_t *buf) DECLSPEC_HIDDEN;
BOOL next_node(stream_t *stream, strbuf_t *buf); BOOL next_node(stream_t *stream, strbuf_t *buf) DECLSPEC_HIDDEN;
const char *get_attr(const char *node, const char *name, int *len); const char *get_attr(const char *node, const char *name, int *len) DECLSPEC_HIDDEN;
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment