diff options
author | Jan Kotas <jkotas@microsoft.com> | 2018-03-19 06:59:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-19 06:59:33 -0700 |
commit | e7bb40f52d46671f5001012284a2f54eaa658e35 (patch) | |
tree | b303ba0ec6f7c19942cd0ceefe6c38eb6b5f941b /src/binder | |
parent | 259006de1cb285e5c15490013289e0b214c6cb21 (diff) | |
download | coreclr-e7bb40f52d46671f5001012284a2f54eaa658e35.tar.gz coreclr-e7bb40f52d46671f5001012284a2f54eaa658e35.tar.bz2 coreclr-e7bb40f52d46671f5001012284a2f54eaa658e35.zip |
Delete unused downlevel globalization support (#17022)
Delete ENABLE_DOWNLEVEL_FOR_NLS and everything under it
Diffstat (limited to 'src/binder')
-rw-r--r-- | src/binder/fusionhelpers.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/binder/fusionhelpers.cpp b/src/binder/fusionhelpers.cpp index bb32856a52..4372bcf344 100644 --- a/src/binder/fusionhelpers.cpp +++ b/src/binder/fusionhelpers.cpp @@ -12,7 +12,6 @@ #include "fusionhelpers.hpp" #include "shlwapi.h" -#include "newapis.h" #define IS_UPPER_A_TO_Z(x) (((x) >= L'A') && ((x) <= L'Z')) #define IS_LOWER_A_TO_Z(x) (((x) >= L'a') && ((x) <= L'z')) @@ -36,7 +35,7 @@ namespace #ifdef FEATURE_USE_LCID int iRet = WszLCMapString(g_lcid, LCMAP_UPPERCASE, &wc, 1, &wTmp, 1); #else - int iRet = NewApis::LCMapStringEx(g_lcid, LCMAP_UPPERCASE, &wc, 1, &wTmp, 1, NULL, NULL, 0); + int iRet = LCMapStringEx(g_lcid, LCMAP_UPPERCASE, &wc, 1, &wTmp, 1, NULL, NULL, 0); #endif if (!iRet) { _ASSERTE(!"LCMapString failed!"); |