X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FKernel%2Finclude%2Futf16.h;h=9d4785cf52f2f404d62c52ae0c20774bf75c8030;hb=2462d860630674d10d554f86aa669163f6f2db6b;hp=0a6666cff461544fb9ce76e94598dfb537217e12;hpb=d0607dd9d43829284ebfe4909cc627bb1edf1ce8;p=tpg%2Facess2.git diff --git a/KernelLand/Kernel/include/utf16.h b/KernelLand/Kernel/include/utf16.h index 0a6666cf..9d4785cf 100644 --- a/KernelLand/Kernel/include/utf16.h +++ b/KernelLand/Kernel/include/utf16.h @@ -10,7 +10,9 @@ extern int ReadUTF16(const Uint16 *Str16, Uint32 *Codepoint); extern size_t UTF16_ConvertToUTF8(size_t DestLen, char *Dest, size_t SrcLen, const Uint16 *Source); +extern int UTF16_CompareWithUTF8Ex(size_t Str16Len, const Uint16 *Str16, const char *Str8, int bIgnoreCase); extern int UTF16_CompareWithUTF8(size_t Str16Len, const Uint16 *Str16, const char *Str8); +extern int UTF16_CompareWithUTF8CI(size_t Str16Len, const Uint16 *Str16, const char *Str8); #endif