summaryrefslogtreecommitdiff
path: root/plugins/HistoryPlusPlus/hpp_services.pas
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-12-08 20:59:04 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-12-08 20:59:04 +0000
commit43d46b2851d53acd8fe348646de96e8e2515178e (patch)
treec190a12c4ac8935949c0bfd5534236d7159c026c /plugins/HistoryPlusPlus/hpp_services.pas
parent65352c6e480b508dd68235b3434f7ea9bd9008b8 (diff)
- HistoryPlusPlus: compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@2701 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryPlusPlus/hpp_services.pas')
-rw-r--r--plugins/HistoryPlusPlus/hpp_services.pas10
1 files changed, 5 insertions, 5 deletions
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