.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH _itow 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fB_itow\fR (NTDLL.@) .SH SYNOPSIS LPWSTR _itow ( int \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 an 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 DIFFERENCES .PP \fB-\fR The native function crashes when the string is longer than \fB19\fR chars. This function does not have this bug. .SH IMPLEMENTATION .PP Declared in \fB"tchar.h"\fR. .PP Implemented in \fB"dlls/ntdll/wcstring.c"\fR.