Cosmos/source/Cosmos.IL2CPU/Plugs/System/EventHandlerImpl.cs
2015-12-26 18:04:58 -06:00

17 lines
672 B
C#

using System;
namespace Cosmos.IL2CPU.Plugs.System {
[Plug(Target=typeof(EventHandler))]
public static class EventHandlerImpl {
//public static void ctor(uint aThis, object aObject, IntPtr aMethod, [FieldAccess(Name = "System.Object System.Delegate._target")] ref object aFldTarget, [FieldAccess(Name = "System.IntPtr System.Delegate._methodPtr")] ref int aFldMethod) {
// // move forward 8 bytes
// aFldTarget = aObject;
// aFldMethod = aMethod.ToInt32();
//}
public static bool Equals(EventHandler aThis, object aThat) {
// todo: implement EventHandler.Equals(object)
return false;
}
}
}