mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 08:50:24 +08:00
[UCRT:LOCALE] Implement __acrt_GetStringTypeW
This commit is contained in:
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/getqloc_downlevel.cpp
|
||||
locale/GetStringTypeA.cpp
|
||||
locale/GetStringTypeW.c
|
||||
locale/get_qualified_locale.cpp
|
||||
locale/glstatus.cpp
|
||||
locale/initctype.cpp
|
||||
|
||||
Reference in New Issue
Block a user