Cosmos/source/Cosmos.Core.Plugs/System/Runtime/InteropServices/SafeHandleImpl.cs
2017-01-28 23:04:47 -06:00

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)
{
}
}
}