1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-21 06:24:10 +01:00
Ryujinx/Ryujinx.HLE/Loaders/Elf/ElfSymbolBinding.cs

9 lines
146 B
C#
Raw Normal View History

namespace Ryujinx.HLE.Loaders.Elf
2018-02-04 23:08:20 +00:00
{
enum ElfSymbolBinding
2018-02-04 23:08:20 +00:00
{
STB_LOCAL = 0,
STB_GLOBAL = 1,
STB_WEAK = 2
2018-02-04 23:08:20 +00:00
}
}