mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 00:58:39 +00:00
3615a70cae
This reverts commit 85dbb9559a
.
10 lines
185 B
C#
10 lines
185 B
C#
namespace Ryujinx.HLE.Loaders.Elf
|
|
{
|
|
enum ElfSymbolVisibility
|
|
{
|
|
STV_DEFAULT = 0,
|
|
STV_INTERNAL = 1,
|
|
STV_HIDDEN = 2,
|
|
STV_PROTECTED = 3
|
|
}
|
|
} |