Module: wine Branch: master Commit: f814b5af688dbb060a69efcc191681943daf3194 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f814b5af688dbb060a69efcc19...
Author: Francois Gouget fgouget@free.fr Date: Wed Mar 16 08:32:01 2011 +0100
hhctrl.ocx: Make AppendFullPathURL() static.
---
dlls/hhctrl.ocx/help.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/hhctrl.ocx/help.c b/dlls/hhctrl.ocx/help.c index 4c6196e..61d90f6 100644 --- a/dlls/hhctrl.ocx/help.c +++ b/dlls/hhctrl.ocx/help.c @@ -111,7 +111,7 @@ BOOL NavigateToUrl(HHInfo *info, LPCWSTR surl) return ret; }
-BOOL AppendFullPathURL(LPCWSTR file, LPWSTR buf, LPCWSTR index) +static BOOL AppendFullPathURL(LPCWSTR file, LPWSTR buf, LPCWSTR index) { static const WCHAR url_format[] = {'m','k',':','@','M','S','I','T','S','t','o','r','e',':','%','s',':',':','%','s','%','s',0};