#ifndef _NTRTL_H
NTSYSAPI
ULONG
NTAPI
RtlNumberOfClearBits(
_In_ PRTL_BITMAP BitMapHeader
);
View code on GitHub// wdm.h
NTSYSAPI ULONG RtlNumberOfClearBits(
[in] PRTL_BITMAP BitMapHeader
);
View the official Windows Driver Kit DDI referenceThis function is documented in Windows Driver Kit.
The RtlNumberOfClearBits routine returns a count of the clear bits in a given bitmap variable.
BitMapHeader [in]A pointer to the RTL_BITMAP structure that describes the bitmap. This structure must have been initialized by the RtlInitializeBitMap routine.
RtlNumberOfClearBits returns the number of bits that are currently clear.
Callers of RtlNumberOfClearBits must be running at IRQL <= APC_LEVEL if the memory that contains the bitmap variable is pageable or the memory at BitMapHeader is pageable. Otherwise, RtlNumberOfClearBits can be called at any IRQL.