mirror of
https://github.com/par274/sharpemu.git
synced 2026-08-03 00:19:46 +08:00
initial commit
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
// Copyright (C) 2026 SharpEmu Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
namespace SharpEmu.HLE;
|
||||
|
||||
public readonly struct SysAbiSymbol
|
||||
{
|
||||
public SysAbiSymbol(string nid, string aliasName, string exportName, Generation target)
|
||||
{
|
||||
ArgumentException.ThrowIfNullOrWhiteSpace(nid);
|
||||
ArgumentException.ThrowIfNullOrWhiteSpace(exportName);
|
||||
|
||||
Nid = nid;
|
||||
AliasName = aliasName;
|
||||
ExportName = exportName;
|
||||
Target = target;
|
||||
}
|
||||
|
||||
public string Nid { get; }
|
||||
|
||||
public string AliasName { get; }
|
||||
|
||||
public string ExportName { get; }
|
||||
|
||||
public Generation Target { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user