NAME

RtlEnlargedUnsignedDivide  (NTDLL.@)

SYNOPSIS

 UINT RtlEnlargedUnsignedDivide
 (
  ULONGLONG a,
  UINT      b,
  UINT*     remptr
 )

DESCRIPTION

Divide one 64 bit unsigned integer by a 32 bit unsigned integer, with remainder.

PARAMS

a [In] Initial number.
b [In] Number to divide a by.
remptr [Out] Destination for remainder.

RETURNS

The dividend of a and b. If remptr is non-NULL it is set to the remainder.

IMPLEMENTATION

Declared in "winternl.h". https://source.winehq.org/source/include/winternl.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.