[UCRT:LOCALE] Implement __acrt_GetStringTypeW

This commit is contained in:
Timo Kreuzer 2024-10-21 17:33:43 +03:00
parent 56b0f836c5
commit 4ea1841f31
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,24 @@
//
// GetStringTypeW.c
//
// Copyright (c) 2024 Timo Kreuzer
//
// Definition of __acrt_GetStringTypeW.
//
// SPDX-License-Identifier: MIT
//
#include <windows.h>
//#include <stringapiset.h>
_Success_(return)
BOOL
__cdecl
__acrt_GetStringTypeW (
_In_ DWORD _DWInfoType,
_In_NLS_string_(_CchSrc) PCWCH _LpSrcStr,
_In_ int _CchSrc,
_Out_ LPWORD _LpCharType)
{
return GetStringTypeW(_DWInfoType, _LpSrcStr, _CchSrc, _LpCharType);
}

View file

@ -6,6 +6,7 @@ list(APPEND UCRT_LOCALE_SOURCES
locale/GetLocaleInfoA.cpp
locale/getqloc_downlevel.cpp
locale/GetStringTypeA.cpp
locale/GetStringTypeW.c
locale/get_qualified_locale.cpp
locale/glstatus.cpp
locale/initctype.cpp