Scroll to navigation

RtlFindClearRuns(3w) Wine API RtlFindClearRuns(3w)

NAME

RtlFindClearRuns (NTDLL.@)

SYNOPSIS

ULONG RtlFindClearRuns
(
PCRTL_BITMAP lpBits,
PRTL_BITMAP_RUN lpSeries,
ULONG ulCount,
BOOLEAN bLongest
)
 

DESCRIPTION

Find a series of clear runs in a bitmap.
 

PARAMS

lpBits [In] Bitmap pointer.
ulSeries [Out] Array for each run found.
ulCount [In] Number of runs to find.
bLongest [In] Whether to find the very longest runs or not.
 

RETURNS

The number of clear runs found.
 

IMPLEMENTATION

Declared in "winternl.h".
Implemented in "dlls/ntdll/rtlbitmap.c".
Debug channel "ntdll".
Oct 2012 Wine API