diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/delphi/m_core.inc | 4 |
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';
///////////////////////////////////////////////////////////////////////////////
|