mirror of
https://github.com/reactos/reactos.git
synced 2025-06-13 01:38:30 +00:00
[UCRT:LOCALE] Implement __acrt_GetStringTypeW
This commit is contained in:
parent
56b0f836c5
commit
4ea1841f31
2 changed files with 25 additions and 0 deletions
24
sdk/lib/ucrt/locale/GetStringTypeW.c
Normal file
24
sdk/lib/ucrt/locale/GetStringTypeW.c
Normal 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);
|
||||||
|
}
|
|
@ -6,6 +6,7 @@ list(APPEND UCRT_LOCALE_SOURCES
|
||||||
locale/GetLocaleInfoA.cpp
|
locale/GetLocaleInfoA.cpp
|
||||||
locale/getqloc_downlevel.cpp
|
locale/getqloc_downlevel.cpp
|
||||||
locale/GetStringTypeA.cpp
|
locale/GetStringTypeA.cpp
|
||||||
|
locale/GetStringTypeW.c
|
||||||
locale/get_qualified_locale.cpp
|
locale/get_qualified_locale.cpp
|
||||||
locale/glstatus.cpp
|
locale/glstatus.cpp
|
||||||
locale/initctype.cpp
|
locale/initctype.cpp
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue