summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-08-15 08:51:43 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-08-15 08:51:43 +0000
commitd11d4a6de1a3ec00021bc7772a64821032b33250 (patch)
treeda6aa5d36ea6bcad426ab60e8c94648c33ec84c9 /include
parentc68165979e5741aa201a9ac951e37fee4ca362cc (diff)
- custom sha1 engine removed from GG;
- minor code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@5700 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r--include/delphi/m_core.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/delphi/m_core.inc b/include/delphi/m_core.inc
index 9b36825a91..0435eab92f 100644
--- a/include/delphi/m_core.inc
+++ b/include/delphi/m_core.inc
@@ -634,9 +634,9 @@ function replaceStr(var dest:pAnsiChar; const src:pAnsiChar):pAnsiChar; stdcall;
function replaceStrW(var dest:pWideChar; const src:pWideChar):pWideChar; stdcall;
external CoreDLL name 'replaceStrW';
-function bin2hex(data:pointer; dataLen:uint_ptr; pDest:pAnsiChar):pAnsiChar; stdcall;
+function bin2hex(data:pointer; dataLen:size_t; pDest:pAnsiChar):pAnsiChar; stdcall;
external CoreDLL name 'bin2hex';
-function bin2hexW(data:pointer; dataLen:uint_ptr; pDest:pWideChar):pWideChar; stdcall;
+function bin2hexW(data:pointer; dataLen:size_t; pDest:pWideChar):pWideChar; stdcall;
external CoreDLL name 'bin2hexW';
///////////////////////////////////////////////////////////////////////////////