mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
24 lines
480 B
C#
24 lines
480 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.Core.Plugs.System.Runtime.InteropServices
|
|
{
|
|
[Plug(Target = typeof(global::System.Runtime.InteropServices.Marshal))]
|
|
public static class MarshalImpl
|
|
{
|
|
public static void CCtor()
|
|
{
|
|
}
|
|
|
|
public static int GetLastWin32Error()
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
}
|