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

Implemented in "dlls/ntdll/rtlbitmap.c". https://source.winehq.org/source/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 Apr 2024.