Add endian conversion routines
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2023-02-08 16:33:57 +01:00
parent a32e18b237
commit d8c68ed003
3 changed files with 85 additions and 0 deletions

View File

@@ -91,6 +91,18 @@ 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,