diff options
author | Michal Strehovský <MichalStrehovsky@users.noreply.github.com> | 2019-05-16 20:23:04 -0700 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2019-05-16 20:23:04 -0700 |
commit | c55319243ed42f8bdcb940d69f03a9c6554cc1d4 (patch) | |
tree | f3db8cfbe42ad7ab134ec7ce0de88f7853a39792 /src/pal/inc/pal.h | |
parent | eae74b83ba12d010f40895f58857a56cdaf4860c (diff) | |
download | coreclr-c55319243ed42f8bdcb940d69f03a9c6554cc1d4.tar.gz coreclr-c55319243ed42f8bdcb940d69f03a9c6554cc1d4.tar.bz2 coreclr-c55319243ed42f8bdcb940d69f03a9c6554cc1d4.zip |
Add support for invariant casing in PAL (#24597)
unicodedata.cpp based on UnicodeData.txt v11.0.
Diffstat (limited to 'src/pal/inc/pal.h')
-rw-r--r-- | src/pal/inc/pal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pal/inc/pal.h b/src/pal/inc/pal.h index 1c69c305be..97091bf3b0 100644 --- a/src/pal/inc/pal.h +++ b/src/pal/inc/pal.h @@ -4618,6 +4618,9 @@ PALIMPORT DLLEXPORT int __cdecl _putenv(const char *); #define ERANGE 34 +PALIMPORT WCHAR __cdecl PAL_ToUpperInvariant(WCHAR); +PALIMPORT WCHAR __cdecl PAL_ToLowerInvariant(WCHAR); + /******************* PAL-specific I/O completion port *****************/ typedef struct _PAL_IOCP_CPU_INFORMATION { |