Files
sharpemu/src/SharpEmu.Core/Loader/ImportedSymbolRelocation.cs
T
2026-03-12 18:01:42 +03:00

11 lines
259 B
C#

// Copyright (C) 2026 SharpEmu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
namespace SharpEmu.Core.Loader;
public readonly record struct ImportedSymbolRelocation(
ulong TargetAddress,
long Addend,
string Nid,
bool IsData);