This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
ryubing/Ryujinx.HLE/Loaders/ElfSymType.cs

13 lines
239 B
C#

namespace Ryujinx.HLE.Loaders
{
enum ElfSymType
{
STT_NOTYPE = 0,
STT_OBJECT = 1,
STT_FUNC = 2,
STT_SECTION = 3,
STT_FILE = 4,
STT_COMMON = 5,
STT_TLS = 6
}
}