1
0
feito fork de xt-sys/exectos

Fix RtlClearBits() and RtlSetBits()

Esse commit está contido em:
2024-03-21 21:36:33 +01:00
commit 7895cb0d32
2 arquivos alterados com 8 adições e 8 exclusões

Ver Arquivo

@@ -61,8 +61,8 @@ RtlClearBit(IN PRTL_BITMAP BitMap,
XTAPI
VOID
RtlClearBits(IN PRTL_BITMAP BitMap,
IN ULONG StartingIndex,
IN ULONG Length);
IN ULONG_PTR StartingIndex,
IN ULONG_PTR Length);
XTAPI
BOOLEAN
@@ -194,8 +194,8 @@ RtlSetBit(IN PRTL_BITMAP BitMap,
XTAPI
VOID
RtlSetBits(IN PRTL_BITMAP BitMap,
IN ULONG StartingIndex,
IN ULONG Length);
IN ULONG_PTR StartingIndex,
IN ULONG_PTR Length);
XTAPI
VOID

Ver Arquivo

@@ -75,8 +75,8 @@ RtlClearBit(IN PRTL_BITMAP BitMap,
XTAPI
VOID
RtlClearBits(IN PRTL_BITMAP BitMap,
IN ULONG StartingIndex,
IN ULONG Length)
IN ULONG_PTR StartingIndex,
IN ULONG_PTR Length)
{
ULONG_PTR BitOffset, Mask;
PULONG_PTR Buffer;
@@ -249,8 +249,8 @@ RtlSetBit(IN PRTL_BITMAP BitMap,
XTAPI
VOID
RtlSetBits(IN PRTL_BITMAP BitMap,
IN ULONG StartingIndex,
IN ULONG Length)
IN ULONG_PTR StartingIndex,
IN ULONG_PTR Length)
{
ULONG_PTR BitOffset, Mask;
PULONG_PTR Buffer;