blob: 649fa0f508d3e8f929c9a3a1c7fd6482c15045dd (
plain) (
blame)
1
2
3
4
5
6
7
|
using System;
namespace ARMeilleure.Translation
{
delegate void DispatcherFunction(IntPtr nativeContext, ulong startAddress);
delegate ulong WrapperFunction(IntPtr nativeContext, ulong startAddress);
}
|