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
父節點 cc632c5ef9
當前提交 5f44458e64
共有 2 個文件被更改,包括 5 次插入5 次删除

查看文件

@@ -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);
};
}