DispatcherFunction.cs 207 B

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