pureikyubu/RnD/SamplingProfiler/Jdi.cs
2020-04-19 15:32:04 +03:00

23 lines
516 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
namespace SamplingProfiler
{
class Jdi
{
[DllImport("DolwinNative.dll")]
public static extern void InitEmu();
[DllImport("DolwinNative.dll")]
public static extern void ShutdownEmu();
[DllImport("DolwinNative.dll", CharSet=CharSet.Ansi)]
public static extern string CallJdi(string request);
}
}