mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-20 13:29:14 +02:00
* commented out all untested (and on non-Win32: unimplemened) TCompareOption
flags git-svn-id: trunk@32275 -
This commit is contained in:
parent
37c1c88f89
commit
21a4a9034d
@ -52,9 +52,12 @@ procedure DefaultUnicode2AnsiMove(source:punicodechar;var dest:RawByteString;cp
|
||||
procedure DefaultAnsi2UnicodeMove(source:pchar;cp : TSystemCodePage;var dest:unicodestring;len:SizeInt);
|
||||
|
||||
Type
|
||||
TCompareOption = (coLingIgnoreCase, coLingIgnoreDiacritic, coIgnoreCase,
|
||||
{ please only enable options below after creating a test program for them that
|
||||
passes on Windows and committing it, so it can be used to verify the
|
||||
functionality on other platforms }
|
||||
TCompareOption = ({coLingIgnoreCase, coLingIgnoreDiacritic, }coIgnoreCase{,
|
||||
coIgnoreKanaType, coIgnoreNonSpace, coIgnoreSymbols, coIgnoreWidth,
|
||||
coLingCasing, coDigitAsNumbers, coStringSort);
|
||||
coLingCasing, coDigitAsNumbers, coStringSort});
|
||||
TCompareOptions = set of TCompareOption;
|
||||
TStandardCodePageEnum = (
|
||||
scpAnsi, // system Ansi code page (GetACP on windows)
|
||||
|
Loading…
Reference in New Issue
Block a user