NAME

GetStringTypeExA  (KERNEL32.@)

SYNOPSIS

 BOOL GetStringTypeExA
 (
  LCID   locale,
  DWORD  type,
  LPCSTR src,
  INT    count,
  LPWORD chartype
 )

DESCRIPTION

Get characteristics of the characters making up a string.

PARAMS

locale [In] Locale Id for the string.
type [In] CT_CTYPE1 = classification, CT_CTYPE2 = directionality, CT_CTYPE3 = typographic info.
src [In] String to analyse.
count [In] Length of src in chars, or -1 if src is NUL terminated.
chartype [Out] Destination for the calculated characteristics.

RETURNS

Success: TRUE. chartype is filled with the requested characteristics of each char in src.

Failure: FALSE. Use GetLastError to determine the cause.

IMPLEMENTATION

Declared in "winnls.h". https://source.winehq.org/source/include/winnls.h

Implemented in "dlls/kernel32/locale.c". https://source.winehq.org/source/dlls/kernel32/locale.c

Debug channel "nls".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Mar 2024.