Fix calling conventions
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 29s
Builds / ExectOS (amd64, release) (push) Successful in 27s
Builds / ExectOS (i686, debug) (push) Successful in 28s
Builds / ExectOS (i686, release) (push) Successful in 26s

This commit is contained in:
2025-09-11 19:44:00 +02:00
parent cc632c5ef9
commit 5f44458e64
2 changed files with 5 additions and 5 deletions

View File

@@ -18,9 +18,9 @@ namespace RTL
class Endianness
{
public:
STATIC XTAPI USHORT SwapByte16(IN USHORT Source);
STATIC XTAPI ULONG SwapByte32(IN ULONG Source);
STATIC XTAPI ULONGLONG SwapByte64(IN ULONGLONG Source);
STATIC XTFASTCALL USHORT SwapByte16(IN USHORT Source);
STATIC XTFASTCALL ULONG SwapByte32(IN ULONG Source);
STATIC XTFASTCALL ULONGLONG SwapByte64(IN ULONGLONG Source);
};
}