.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH RtlLargeIntegerDivide 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fBRtlLargeIntegerDivide\fR (NTDLL.@) .SH SYNOPSIS ULONGLONG RtlLargeIntegerDivide ( ULONGLONG \fIa\fR, ULONGLONG \fIb\fR, ULONGLONG* \fIrem\fR ) .SH DESCRIPTION .PP Divide one \fB64\fR bit unsigned integer by another, with remainder. .SH PARAMS \fIa\fR \fB[In]\fR Initial number. .PP \fIb\fR \fB[In]\fR Number to divide \fIa\fR by. .PP \fIrem\fR \fB[Out]\fR Destination for remainder. .PP .SH RETURNS .PP The dividend of \fIa\fR and \fIb\fR. If \fIrem\fR is non-NULL it is set to the remainder. .SH FIXME .PP Should it be signed division instead? .SH IMPLEMENTATION .PP Declared in \fB"winternl.h"\fR. .PP Implemented in \fB"dlls/ntdll/large_int.c"\fR.