Module: wine Branch: master Commit: ac2886b516b102687d9e2dab1eb8404317e02d9d URL: http://source.winehq.org/git/wine.git/?a=commit;h=ac2886b516b102687d9e2dab1e...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Feb 28 03:45:34 2007 +0100
hhctrl.ocx: Move hhctrl_hinstance to hhctrl.h.
---
dlls/hhctrl.ocx/help.c | 2 -- dlls/hhctrl.ocx/hhctrl.h | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/hhctrl.ocx/help.c b/dlls/hhctrl.ocx/help.c index e018c14..7ce5706 100644 --- a/dlls/hhctrl.ocx/help.c +++ b/dlls/hhctrl.ocx/help.c @@ -53,8 +53,6 @@ typedef struct tagHHInfo HFONT hFont; } HHInfo;
-extern HINSTANCE hhctrl_hinstance; - /* Loads a string from the resource file */ static LPWSTR HH_LoadString(DWORD dwID) { diff --git a/dlls/hhctrl.ocx/hhctrl.h b/dlls/hhctrl.ocx/hhctrl.h index 23803b1..36cad0d 100644 --- a/dlls/hhctrl.ocx/hhctrl.h +++ b/dlls/hhctrl.ocx/hhctrl.h @@ -116,4 +116,6 @@ static inline LPWSTR strdupAtoW(LPCSTR str) return ret; }
+extern HINSTANCE hhctrl_hinstance; + #endif