https://git.reactos.org/?p=reactos.git;a=commitdiff;h=b5531f51267cc1a54775a…
commit b5531f51267cc1a54775a8a21526ebaf4d7fd077
Author: Timo Kreuzer <timo.kreuzer(a)reactos.org>
AuthorDate: Sat Sep 14 10:14:49 2024 +0300
Commit: Timo Kreuzer <timo.kreuzer(a)reactos.org>
CommitDate: Sat Sep 14 20:15:07 2024 +0300
[XDK] Add RtlFindNextForwardRunSet for wdm.h
Windows DDK doesn't have it, but I think it won't hurt to have it.
---
sdk/include/xdk/rtlfuncs.h | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/sdk/include/xdk/rtlfuncs.h b/sdk/include/xdk/rtlfuncs.h
index 276cfaf6cf9..88fd0f76baa 100644
--- a/sdk/include/xdk/rtlfuncs.h
+++ b/sdk/include/xdk/rtlfuncs.h
@@ -673,6 +673,14 @@ RtlFindNextForwardRunClear(
_In_ ULONG FromIndex,
_Out_ PULONG StartingRunIndex);
+NTSYSAPI
+ULONG
+NTAPI
+RtlFindNextForwardRunSet(
+ _In_ PRTL_BITMAP BitMapHeader,
+ _In_ ULONG FromIndex,
+ _Out_ PULONG StartingRunIndex);
+
_Success_(return != -1)
_Must_inspect_result_
NTSYSAPI