0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/Ryujinx.HLE/Loaders/Elf/ElfSymbolType.cs

13 lines
239 B
C#
Raw Normal View History

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