mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 05:18:38 +00:00
17 lines
379 B
C#
17 lines
379 B
C#
using System.Runtime.InteropServices;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.Core.Plugs.System.Runtime.InteropServices
|
|
{
|
|
[Plug(Target = typeof(SafeHandle))]
|
|
public static class SafeHandleImpl
|
|
{
|
|
public static void InternalDispose(object aThis)
|
|
{
|
|
}
|
|
|
|
public static void InternalFinalize(object aThis)
|
|
{
|
|
}
|
|
}
|
|
}
|