.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH _ltow 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fB_ltow\fR (NTDLL.@) .SH SYNOPSIS LPWSTR _ltow ( LONG \fIvalue\fR, LPWSTR \fIstr\fR, INT \fIradix\fR ) .SH PARAMS \fIvalue\fR \fB[In]\fR Value to be converted. .PP \fIstr\fR \fB[Out]\fR Destination for the converted \fIvalue\fR. .PP \fIradix\fR \fB[In]\fR Number base for conversion. .PP .SH DESCRIPTION .PP Converts a long integer to a unicode string. .SH RETURNS .PP Always returns \fIstr\fR. .SH NOTES .PP Converts \fIvalue\fR to a \fB'\0'\fR terminated wstring which is copied to \fIstr\fR. The maximum length of the copied \fIstr\fR is \fB33\fR bytes. If \fIradix\fR is \fB10\fR and \fIvalue\fR is negative, the \fIvalue\fR is converted with sign. Does not check if \fIradix\fR is in the range of \fB2\fR to \fB36.\fR If \fIstr\fR is \fBNULL\fR it just returns \fBNULL\fR. .SH IMPLEMENTATION .PP Declared in \fB"tchar.h"\fR. .PP Implemented in \fB"dlls/ntdll/wcstring.c"\fR.