mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2026-01-07 18:14:49 +00:00
Move solution and projects to src
This commit is contained in:
16
src/Ryujinx.HLE/HOS/Tamper/ITamperedProcess.cs
Normal file
16
src/Ryujinx.HLE/HOS/Tamper/ITamperedProcess.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Ryujinx.HLE.HOS.Kernel.Process;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Tamper
|
||||
{
|
||||
interface ITamperedProcess
|
||||
{
|
||||
ProcessState State { get; }
|
||||
|
||||
bool TamperedCodeMemory { get; set; }
|
||||
|
||||
T ReadMemory<T>(ulong va) where T : unmanaged;
|
||||
void WriteMemory<T>(ulong va, T value) where T : unmanaged;
|
||||
void PauseProcess();
|
||||
void ResumeProcess();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user