0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 21:21:41 +00:00
ryujinx-fork/Ryujinx.Core/Loaders/ElfSymType.cs

13 lines
240 B
C#
Raw Normal View History

namespace Ryujinx.Core.Loaders
2018-02-04 23:08:20 +00:00
{
enum ElfSymType
{
STT_NOTYPE = 0,
STT_OBJECT = 1,
STT_FUNC = 2,
STT_SECTION = 3,
STT_FILE = 4,
STT_COMMON = 5,
STT_TLS = 6
}
}