mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-26 04:39:17 +08:00
11 lines
259 B
C#
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);
|