Implement RtlClearBits() and RtlSetBits() routines

This commit is contained in:
2024-03-19 19:53:49 +01:00
parent 3cd55260e6
commit b6f915c0c5
3 changed files with 162 additions and 0 deletions

View File

@@ -58,6 +58,12 @@ VOID
RtlClearBit(IN PRTL_BITMAP BitMap,
IN ULONG_PTR Bit);
XTAPI
VOID
RtlClearBits(IN PRTL_BITMAP BitMap,
IN ULONG StartingIndex,
IN ULONG Length);
XTAPI
BOOLEAN
RtlCompareGuids(IN PGUID Guid1,
@@ -185,6 +191,12 @@ VOID
RtlSetBit(IN PRTL_BITMAP BitMap,
IN ULONG_PTR Bit);
XTAPI
VOID
RtlSetBits(IN PRTL_BITMAP BitMap,
IN ULONG StartingIndex,
IN ULONG Length);
XTAPI
VOID
RtlSetMemory(OUT PVOID Destination,