DispatcherFunction.cs 214 B

1234567
  1. using System;
  2. namespace ARMeilleure.Translation
  3. {
  4. delegate void DispatcherFunction(IntPtr nativeContext, ulong startAddress);
  5. delegate ulong WrapperFunction(IntPtr nativeContext, ulong startAddress);
  6. }