NAME

RtlInitializeBitMap  (NTDLL.@)

SYNOPSIS

 VOID RtlInitializeBitMap
 (
  PRTL_BITMAP lpBits,
  PULONG      lpBuff,
  ULONG       ulSize
 )

DESCRIPTION

Initialise a new bitmap.

PARAMS

lpBits [In] Bitmap pointer.
lpBuff [In] Memory for the bitmap.
ulSize [In] Size of lpBuff in bits.

RETURNS

Nothing.

NOTES

lpBuff must be aligned on a ULONG suitable boundary, to a multiple of 32 bytes in size (irrespective of ulSize given).

IMPLEMENTATION

Declared in "include/winternl.h". gitlab.winehq.org/wine/wine/blob/master/include/winternl.h

Implemented in "dlls/ntdll/rtlbitmap.c". gitlab.winehq.org/wine/wine/blob/master/dlls/ntdll/rtlbitmap.c

Debug channel "ntdll".


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