Cosmos/source/Indy.IL2CPU.IL.X86/CustomImplementations/System/EventHandlerImpl.cs
2007-10-26 15:03:48 +00:00

17 lines
415 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.IL.X86.CustomImplementations.System {
public static unsafe class EventHandlerImpl {
public static void Ctor(uint* aThis, uint aObject, uint aMethod) {
// move forward 8 bytes
uint* xThis = aThis;
aThis += 2;
*aThis = aObject;
aThis += 1;
*aThis = aMethod;
}
}
}