Fixed GC API

Found some functions implementations.
This commit is contained in:
Elia Sulimanov 2020-08-19 22:17:13 +03:00
parent b09b8ca471
commit 47a2bd8915

View file

@ -44,20 +44,20 @@ namespace Cosmos.Core
} }
/// <summary> /// <summary>
/// Increase reference count of an given object. Not implemented. /// Increase reference count of an given object. Plugged.
/// </summary> /// </summary>
/// <param name="aObject">An object to increase to reference count of.</param> /// <param name="aObject">An object to increase to reference count of.</param>
/// <exception cref="NotImplementedException">Thrown always.</exception> /// <exception cref="NotImplementedException">Thrown on fatal error, contact support.</exception>
public static unsafe void IncRefCount(uint aObject) public static unsafe void IncRefCount(uint aObject)
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }
/// <summary> /// <summary>
/// Decrease reference count of an given object. Not implemented. /// Decrease reference count of an given object. Plugged.
/// </summary> /// </summary>
/// <param name="aObject">An object to decrease to reference count of.</param> /// <param name="aObject">An object to decrease to reference count of.</param>
/// <exception cref="NotImplementedException">Thrown always.</exception> /// <exception cref="NotImplementedException">Thrown on fatal error, contact support.</exception>
public static unsafe void DecRefCount(uint aObject) public static unsafe void DecRefCount(uint aObject)
{ {
throw new NotImplementedException(); throw new NotImplementedException();