.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH _ui64tow 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fB_ui64tow\fR (NTDLL.@) .SH SYNOPSIS LPWSTR _ui64tow ( ULONGLONG \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 large unsigned 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. 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 This function does not exist in the native dll (but in msvcrt). But since the maintenance of all these functions is better done in one place we implement it here. .SH IMPLEMENTATION .PP Declared in \fB"msvcrt/stdlib.h"\fR. .PP Implemented in \fB"dlls/ntdll/wcstring.c"\fR.