Rename endian conversion routines to match naming convention

This commit is contained in:
2023-04-04 21:02:14 +02:00
parent 2257ad1567
commit 4073b1589d
2 changed files with 34 additions and 34 deletions

View File

@@ -194,6 +194,18 @@ LONGLONG
RtlAtomicXor64(IN VOLATILE PLONGLONG Address,
IN LONGLONG Mask);
XTFASTCALL
USHORT
RtlByteSwap16(IN USHORT Source);
XTFASTCALL
ULONG
RtlByteSwap32(IN ULONG Source);
XTFASTCALL
ULONGLONG
RtlByteSwap64(IN ULONGLONG Source);
XTAPI
SIZE_T
RtlCompareMemory(IN PCVOID LeftBuffer,
@@ -281,18 +293,6 @@ RtlStringToWideString(OUT PWCHAR Destination,
IN CONST PUCHAR *Source,
IN SIZE_T Length);
XTFASTCALL
ULONG
RtlUlongByteSwap(IN ULONG Source);
XTFASTCALL
ULONGLONG
RtlUlonglongByteSwap(IN ULONGLONG Source);
XTFASTCALL
USHORT
RtlUshortByteSwap(IN USHORT Source);
XTCDECL
INT
RtlWideStringCompare(IN CONST PWCHAR String1,