Commit 6a76d027 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

msvcrt: Don't include MSVC 11.0+ function _wcreate_locale in SOs for older DLLs.

parent b6ec8980
......@@ -1641,8 +1641,9 @@ MSVCRT__locale_t CDECL MSVCRT__create_locale(int category, const char *locale)
return loc;
}
#if _MSVCR_VER >= 110
/*********************************************************************
* _wcreate_locale (MSVCRT.@)
* _wcreate_locale (MSVCR110.@)
*/
MSVCRT__locale_t CDECL MSVCRT__wcreate_locale(int category, const MSVCRT_wchar_t *locale)
{
......@@ -1665,6 +1666,7 @@ MSVCRT__locale_t CDECL MSVCRT__wcreate_locale(int category, const MSVCRT_wchar_t
MSVCRT_free(str);
return loc;
}
#endif
/*********************************************************************
* setlocale (MSVCRT.@)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment