From 43d46b2851d53acd8fe348646de96e8e2515178e Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Sat, 8 Dec 2012 20:59:04 +0000 Subject: - HistoryPlusPlus: compilation fix git-svn-id: http://svn.miranda-ng.org/main/trunk@2701 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/HistoryPlusPlus/hpp_services.pas | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins/HistoryPlusPlus/hpp_services.pas') diff --git a/plugins/HistoryPlusPlus/hpp_services.pas b/plugins/HistoryPlusPlus/hpp_services.pas index be6d56e007..6b2d2310d7 100644 --- a/plugins/HistoryPlusPlus/hpp_services.pas +++ b/plugins/HistoryPlusPlus/hpp_services.pas @@ -157,7 +157,7 @@ end; // MS_HISTORY_SHOWCONTACTHISTORY service // show history called by miranda -function HppShowHistory(wParam { hContact } : WPARAM; lParam { 0 } : LPARAM): int_ptr; cdecl; +function HppShowHistory(wParam { hContact } : WPARAM; lParam { 0 } : LPARAM): uint_ptr; cdecl; begin OpenContactHistory(wParam); Result := 0; @@ -165,14 +165,14 @@ end; // MS_HPP_GETVERSION service // See m_historypp.inc for details -function HppGetVersion(wParam { 0 } : WPARAM; lParam { 0 } : LPARAM): int_ptr; cdecl; +function HppGetVersion(wParam { 0 } : WPARAM; lParam { 0 } : LPARAM): uint_ptr; cdecl; begin Result := hppVersion; end; // MS_HPP_SHOWGLOBALSEARCH service // See m_historypp.inc for details -function HppShowGlobalSearch(wParam { 0 } : WPARAM; lParam { 0 } : LPARAM): int_ptr; cdecl; +function HppShowGlobalSearch(wParam { 0 } : WPARAM; lParam { 0 } : LPARAM): uint_ptr; cdecl; begin if not Assigned(fmGlobalSearch) then begin @@ -187,7 +187,7 @@ end; // MS_HPP_OPENHISTORYEVENT service // See m_historypp.inc for details -function HppOpenHistoryEvent(wParam { POpenEventParams } : WPARAM; lParam: LPARAM): int_ptr; cdecl; +function HppOpenHistoryEvent(wParam { POpenEventParams } : WPARAM; lParam: LPARAM): uint_ptr; cdecl; var wHistory: THistoryFrm; hDbEvent: THandle; @@ -219,7 +219,7 @@ end; // MS_HPP_EMPTYHISTORY service // See m_historypp.inc for details -function HppEmptyHistory(wParam { hContact } : WPARAM; lParam { 0 } : LPARAM): int_ptr; cdecl; +function HppEmptyHistory(wParam { hContact } : WPARAM; lParam { 0 } : LPARAM): uint_ptr; cdecl; var wHistory: THistoryFrm; begin -- cgit v1.2.3