mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-07 19:05:05 +01:00
* fixed previous commit
git-svn-id: trunk@1050 -
This commit is contained in:
parent
629fc8fe64
commit
63ed93fc24
@ -57,7 +57,7 @@ var
|
|||||||
function towlower(__wc:wint_t):wint_t;cdecl;external libiconvname name 'towlower';
|
function towlower(__wc:wint_t):wint_t;cdecl;external libiconvname name 'towlower';
|
||||||
function towupper(__wc:wint_t):wint_t;cdecl;external libiconvname name 'towupper';
|
function towupper(__wc:wint_t):wint_t;cdecl;external libiconvname name 'towupper';
|
||||||
function wcscoll (__s1:pwchar_t; __s2:pwchar_t):cint;cdecl;external libiconvname name 'wcscoll';
|
function wcscoll (__s1:pwchar_t; __s2:pwchar_t):cint;cdecl;external libiconvname name 'wcscoll';
|
||||||
function strcoll (__s1:pchar_t; __s2:pchar_t):cint;cdecl;external libiconvname name 'strcoll';
|
function strcoll (__s1:pchar; __s2:pchar):cint;cdecl;external libiconvname name 'strcoll';
|
||||||
|
|
||||||
const
|
const
|
||||||
{$ifdef linux}
|
{$ifdef linux}
|
||||||
@ -229,7 +229,7 @@ function CompareTextWideString(const s1, s2 : WideString): PtrInt;
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
function StrCompAnsi(s1,s2 : AnsiString): PtrInt;
|
function StrCompAnsi(s1,s2 : PChar): PtrInt;
|
||||||
begin
|
begin
|
||||||
result:=strcoll(s1,s2);
|
result:=strcoll(s1,s2);
|
||||||
end;
|
end;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user