mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 21:38:52 +00:00
19 lines
No EOL
498 B
C#
19 lines
No EOL
498 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
using Indy.IL2CPU.X86.Plugs.NEW_PLUGS;
|
|
|
|
namespace Cosmos.IL2CPU.X86.Plugs.NEW_PLUGS
|
|
{
|
|
[Plug(Target=typeof(Delegate))]
|
|
public static class NormalDelegateImpl
|
|
{
|
|
[PlugMethod(Assembler = typeof(GetMulticastInvokeAssembler))]
|
|
public static IntPtr GetMulticastInvoke(Delegate aThis)
|
|
{
|
|
return IntPtr.Zero;
|
|
}
|
|
}
|
|
} |