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

10 lines
181 B
C#
Raw Normal View History

namespace Ryujinx.HLE.Loaders.Elf
2018-02-04 17:08:20 -06:00
{
enum ElfSymbolVisibility
2018-02-04 17:08:20 -06:00
{
StvDefault = 0,
StvInternal = 1,
StvHidden = 2,
StvProtected = 3
2018-02-04 17:08:20 -06:00
}
}