aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/Loaders/ElfSymBinding.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Core/Loaders/ElfSymBinding.cs')
-rw-r--r--Ryujinx.Core/Loaders/ElfSymBinding.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.Core/Loaders/ElfSymBinding.cs b/Ryujinx.Core/Loaders/ElfSymBinding.cs
new file mode 100644
index 00000000..c8789496
--- /dev/null
+++ b/Ryujinx.Core/Loaders/ElfSymBinding.cs
@@ -0,0 +1,9 @@
+namespace Ryujinx.Core.Loaders
+{
+ enum ElfSymBinding
+ {
+ STB_LOCAL = 0,
+ STB_GLOBAL = 1,
+ STB_WEAK = 2
+ }
+} \ No newline at end of file