mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +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>
|
||||
/// Increase reference count of an given object. Not implemented.
|
||||
/// Increase reference count of an given object. Plugged.
|
||||
/// </summary>
|
||||
/// <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)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Decrease reference count of an given object. Not implemented.
|
||||
/// Decrease reference count of an given object. Plugged.
|
||||
/// </summary>
|
||||
/// <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)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
|
|
|
|||
Loading…
Reference in a new issue