mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
15 lines
578 B
C#
15 lines
578 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Indy.IL2CPU.Plugs;
|
|
|
|
namespace Indy.IL2CPU.IL.X86.CustomImplementations.System {
|
|
public static class EventHandlerImpl {
|
|
public static void Ctor(uint aThis, uint aObject, uint aMethod, [FieldAccess(Name = "System.Object System.Delegate._target")] ref uint aFldTarget, [FieldAccess(Name = "System.IntPtr System.Delegate._methodPtr")] ref uint aFldMethod) {
|
|
//// move forward 8 bytes
|
|
aFldTarget = aObject;
|
|
aFldMethod = aMethod;
|
|
}
|
|
}
|
|
}
|