mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-17 00:16:11 +08:00
initial commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
// Copyright (C) 2026 SharpEmu Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
using SharpEmu.Core;
|
||||
using SharpEmu.Core.Memory;
|
||||
using SharpEmu.HLE;
|
||||
|
||||
namespace SharpEmu.Core.Loader;
|
||||
|
||||
public interface ISelfLoader
|
||||
{
|
||||
SelfImage Load(ReadOnlySpan<byte> imageData, IVirtualMemory virtualMemory);
|
||||
|
||||
SelfImage Load(ReadOnlySpan<byte> imageData, IVirtualMemory virtualMemory, IFileSystem? fs, string? mountRoot);
|
||||
|
||||
SelfImage Load(ReadOnlySpan<byte> imageData, IVirtualMemory virtualMemory, IModuleManager moduleManager);
|
||||
|
||||
SelfImage Load(ReadOnlySpan<byte> imageData, IVirtualMemory virtualMemory, IModuleManager moduleManager, IFileSystem? fs, string? mountRoot);
|
||||
|
||||
SelfImage LoadAdditional(ReadOnlySpan<byte> imageData, IVirtualMemory virtualMemory, IModuleManager moduleManager, IFileSystem? fs, string? mountRoot);
|
||||
}
|
||||
Reference in New Issue
Block a user