23 lines
640 B
C#
23 lines
640 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HybridCLR.Editor.ABI
|
|||
|
{
|
|||
|
public static class ABIUtil
|
|||
|
{
|
|||
|
public static string GetHybridCLRPlatformMacro(PlatformABI abi)
|
|||
|
{
|
|||
|
switch(abi)
|
|||
|
{
|
|||
|
case PlatformABI.Arm64: return "HYBRIDCLR_ABI_ARM_64";
|
|||
|
case PlatformABI.Universal64: return "HYBRIDCLR_ABI_UNIVERSAL_64";
|
|||
|
case PlatformABI.Universal32: return "HYBRIDCLR_ABI_UNIVERSAL_32";
|
|||
|
default: throw new NotSupportedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|