diff options
Diffstat (limited to 'plugins/HistoryPlusPlus/hpp_external.pas')
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_external.pas | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_external.pas b/plugins/HistoryPlusPlus/hpp_external.pas index 3f941a30bc..475bd20426 100644 --- a/plugins/HistoryPlusPlus/hpp_external.pas +++ b/plugins/HistoryPlusPlus/hpp_external.pas @@ -26,7 +26,7 @@ interface uses
Classes, Windows,
m_api,
- hpp_global, hpp_database, hpp_externalgrid;
+ hpp_externalgrid;
type
TExternalGrids = class(TObject)
@@ -52,8 +52,6 @@ const ME_HPP_EG_OPTIONSCHANGED = 'History++/ExtGrid/OptionsChanged';
var
- hExtWindowIE, hExtEventIE, hExtNavigateIE, hExtOptChangedIE: THandle;
- hExtWindow, hExtEvent, hExtNavigate, hExtOptChanged: THandle;
ImitateIEView: boolean;
ExternalGrids: TExternalGrids;
@@ -62,8 +60,15 @@ procedure UnregisterExtGridServices; implementation
+uses
+ hpp_global, hpp_database;
+
{$include m_ieview.inc}
+var
+ hExtWindowIE, hExtEventIE, hExtNavigateIE, hExtOptChangedIE: THandle;
+ hExtWindow, hExtEvent, hExtNavigate, hExtOptChanged: THandle;
+
function _ExtWindow(wParam:WPARAM; lParam: LPARAM; GridMode: TExGridMode): int_ptr;
var
par: PIEVIEWWINDOW;
|