.\" -*- nroff -*-
.\" Generated file - DO NOT EDIT!
.TH GetStringTypeA 3w "Oct 2012" "Wine API" "Wine API"

.SH NAME
\fBGetStringTypeA\fR (KERNEL32.@)
.SH SYNOPSIS
BOOL GetStringTypeA
 (
  LCID   \fIlocale\fR,
  DWORD  \fItype\fR,
  LPCSTR \fIsrc\fR,
  INT    \fIcount\fR,
  LPWORD \fIchartype\fR
 )

.SH DESCRIPTION
.PP
Get characteristics of the characters making up a string. 

.SH PARAMS
\fIlocale\fR \fB[In]\fR  Locale Id for the string.
.PP
\fItype\fR \fB[In]\fR  \fBCT_CTYPE1\fR = classification, \fBCT_CTYPE2\fR = directionality, \fBCT_CTYPE3\fR = typographic info.
.PP
\fIsrc\fR \fB[In]\fR  String to analyse.
.PP
\fIcount\fR \fB[In]\fR  Length of \fIsrc\fR in chars, or \fB-1\fR if \fIsrc\fR is \fBNUL\fR terminated.
.PP
\fIchartype\fR \fB[Out]\fR  Destination for the calculated characteristics.
.PP

.SH RETURNS
.PP
\fBSuccess:\fR \fBTRUE\fR. \fIchartype\fR is filled with the requested characteristics of each char in \fIsrc\fR. 
.PP
\fBFailure:\fR \fBFALSE\fR. Use \fBGetLastError(3w)\fR to determine the cause. 

.SH IMPLEMENTATION
.PP
Declared in \fB"winnls.h"\fR. 
.PP
Implemented in \fB"dlls/kernel32/locale.c"\fR. 
.PP
Debug channel \fB"nls"\fR.