.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH GetLocaleInfoA 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fBGetLocaleInfoA\fR (KERNEL32.@) .SH SYNOPSIS INT GetLocaleInfoA ( LCID \fIlcid\fR, LCTYPE \fIlctype\fR, LPSTR \fIbuffer\fR, INT \fIlen\fR ) .SH DESCRIPTION .PP Get information about an aspect of a locale. .SH PARAMS \fIlcid\fR \fB[In]\fR \fBLCID\fR of the locale. .PP \fIlctype\fR \fB[In]\fR \fBLCTYPE_\fR flags from \fB"winnls.h"\fR. .PP \fIbuffer\fR \fB[Out]\fR Destination for the information. .PP \fIlen\fR \fB[In]\fR Length of \fIbuffer\fR in characters. .PP .SH RETURNS .PP \fBSuccess:\fR The size of the data requested. If \fIbuffer\fR is non-NULL, it is filled with the information. .PP \fBFailure:\fR \fB0.\fR Use \fBGetLastError(3w)\fR to determine the cause. .SH NOTES .PP \fB-\fR \fBLOCALE_NEUTRAL\fR is equal to \fBLOCALE_SYSTEM_DEFAULT\fR .PP \fB-\fR The string returned is \fBNUL\fR terminated, except for \fBLOCALE_FONTSIGNATURE\fR, which is a bit string. .SH IMPLEMENTATION .PP Declared in \fB"winnls.h"\fR. .PP Implemented in \fB"dlls/kernel32/locale.c"\fR. .PP Debug channel \fB"nls"\fR.