This repository has been archived on 2026-01-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ryubing/Ryujinx.Core/Loaders/ElfSymBinding.cs

9 lines
140 B
C#

namespace Ryujinx.Core.Loaders
{
enum ElfSymBinding
{
STB_LOCAL = 0,
STB_GLOBAL = 1,
STB_WEAK = 2
}
}