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

View File

@@ -610,7 +610,7 @@ RTL::Math::GetBaseExponent(IN DOUBLE Value,
*
* @since XT 1.0
*/
XTCDECL
XTAPI
BOOLEAN
RTL::Math::InfiniteDouble(IN DOUBLE Value)
{
@@ -669,7 +669,7 @@ RTL::Math::MultiplyLargeInteger(IN LARGE_INTEGER Multiplicand,
*
* @since XT 1.0
*/
XTCDECL
XTAPI
BOOLEAN
RTL::Math::NanDouble(IN DOUBLE Value)
{