NAME

RtlFindNextForwardRunSet  (NTDLL.@)

SYNOPSIS

 ULONG RtlFindNextForwardRunSet
 (
  PCRTL_BITMAP lpBits,
  ULONG        ulStart,
  PULONG       lpPos
 )

DESCRIPTION

Find the next run of set bits in a bitmap.

PARAMS

lpBits [In] Bitmap pointer.
ulStart [In] Bit position to start searching from.
lpPos [Out] Start of run.

RETURNS

Success: The length of the next set run in the bitmap. lpPos is set to the start of the run.

Failure: 0, if no run is found or any parameters are invalid.

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 Mar 2024.