1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-16 04:40:05 -06:00
ryujinx/Ryujinx.HLE/Loaders/ElfSymBinding.cs

9 lines
139 B
C#
Raw Normal View History

namespace Ryujinx.HLE.Loaders
2018-02-04 17:08:20 -06:00
{
enum ElfSymBinding
{
STB_LOCAL = 0,
STB_GLOBAL = 1,
STB_WEAK = 2
}
}