Ryujinx/src/ARMeilleure/Translation/DispatcherFunction.cs
2023-04-27 23:51:14 +02:00

7 lines
214 B
C#

using System;
namespace ARMeilleure.Translation
{
delegate void DispatcherFunction(IntPtr nativeContext, ulong startAddress);
delegate ulong WrapperFunction(IntPtr nativeContext, ulong startAddress);
}