mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-01-28 18:46:47 -06:00
3615a70cae
This reverts commit 85dbb9559ad317a657dafd24da27fec4b3f5250f.
9 lines
146 B
C#
9 lines
146 B
C#
namespace Ryujinx.HLE.Loaders.Elf
|
|
{
|
|
enum ElfSymbolBinding
|
|
{
|
|
STB_LOCAL = 0,
|
|
STB_GLOBAL = 1,
|
|
STB_WEAK = 2
|
|
}
|
|
} |