From ac2886b516b102687d9e2dab1eb8404317e02d9d Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Wed, 28 Feb 2007 03:45:34 +0100 Subject: [PATCH] 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 e018c147a51..7ce570668c7 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 23803b1e0e0..36cad0d14b7 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