GetStringTypeExA.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

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(3w) to determine the cause.

IMPLEMENTATION

Defined in "winnls.h".

Implemented in "dlls/kernel32/locale.c".

Debug channel "nls".