RtlLargeIntegerDivide(3w)
NAME
RtlLargeIntegerDivide (NTDLL.@)
SYNOPSIS
ULONGLONG RtlLargeIntegerDivide ( ULONGLONG a, ULONGLONG b, ULONGLONG* rem )
DESCRIPTION
Divide one 64 bit unsigned integer by another, with remainder.
PARAMS
a [In] Initial number.
b [In] Number to divide a by.
rem [Out] Destination for remainder.
RETURNS
The dividend of a and b. If rem is non-NULL it is set to the remainder.
FIXME
Should it be signed division instead?
IMPLEMENTATION
Defined in "winternl.h".
- Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/ntdll/large_int.c".