Ryujinx/Ryujinx.HLE/Loaders/Elf/ElfSymbolType.cs

13 lines
239 B
C#
Raw Normal View History

namespace Ryujinx.HLE.Loaders.Elf
2018-02-05 00:08:20 +01:00
{
enum ElfSymbolType
2018-02-05 00:08:20 +01:00
{
SttNoType = 0,
SttObject = 1,
SttFunc = 2,
SttSection = 3,
SttFile = 4,
SttCommon = 5,
SttTls = 6
2018-02-05 00:08:20 +01:00
}
}