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

Declared in "ddk/ntddk.h". https://source.winehq.org/source/include/ddk/ntddk.h

Implemented in "dlls/ntdll/large_int.c". https://source.winehq.org/source/dlls/ntdll/large_int.c


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Apr 2024.