mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 21:42:11 +00:00
Fixed GC API
Found some functions implementations.
This commit is contained in:
parent
b09b8ca471
commit
47a2bd8915
1 changed files with 4 additions and 4 deletions
|
|
@ -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();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue