aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/Translation/DispatcherFunction.cs
blob: 7d5a3388ef31693ad2f22025c89cc0b52a1d7d2b (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);
}