mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
19 lines
430 B
C#
19 lines
430 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace ARMeilleure.Translation
|
|
{
|
|
class DelegateInfo
|
|
{
|
|
private readonly Delegate _dlg; // Ensure that this delegate will not be garbage collected.
|
|
|
|
public IntPtr FuncPtr { get; }
|
|
|
|
public DelegateInfo(Delegate dlg)
|
|
{
|
|
_dlg = dlg;
|
|
|
|
FuncPtr = Marshal.GetFunctionPointerForDelegate<Delegate>(dlg);
|
|
}
|
|
}
|
|
}
|