using System; using System.Diagnostics; using Cosmos.IL2CPU.API.Attribs; namespace Cosmos.CPU.x86 { [DebuggerStepThrough] public static class GCImplementation { private static void AcquireLock() { } private static void ReleaseLock() { } [PlugMethod(PlugRequired = true)] public static uint AllocNewObject(uint aSize) { return 0; } /// /// This function gets the pointer to the memory location of where it's stored. /// /// public static unsafe void IncRefCount(uint aObject) { } /// /// This function gets the pointer to the memory location of where it's stored. /// /// public static unsafe void DecRefCount(uint aObject) { } } }