Add missing forward references to math related routines

This commit is contained in:
2024-02-13 16:25:41 +01:00
parent 99bdd917d9
commit a852993842
2 changed files with 60 additions and 0 deletions

View File

@@ -89,12 +89,27 @@ RtlConcatenateWideString(OUT PWCHAR Destination,
IN PWCHAR Source,
IN SIZE_T Count);
XTAPI
LARGE_INTEGER
RtlConvertToLargeInteger32(IN LONG Value);
XTAPI
LARGE_INTEGER
RtlConvertToLargeIntegerUnsigned32(IN ULONG Value);
XTAPI
VOID
RtlCopyMemory(OUT PVOID Destination,
IN PCVOID Source,
IN SIZE_T Length);
XTAPI
LARGE_INTEGER
RtlDivideLargeInteger(IN LARGE_INTEGER Dividend,
IN ULONG Divisor,
OUT PULONG Remainder);
XTAPI
VOID
RtlFillMemory(OUT PVOID Destination,
@@ -107,6 +122,11 @@ RtlMoveMemory(OUT PVOID Destination,
IN PCVOID Source,
IN SIZE_T Length);
XTAPI
LARGE_INTEGER
RtlMultiplyLargeInteger(IN LARGE_INTEGER Multiplicand,
IN LONG Multiplier);
XTAPI
BOOLEAN
RtlSameMemory(IN PCVOID LeftBuffer,