summaryrefslogtreecommitdiff
path: root/view/sharedcache/api/python/sharedcache_enums.py
diff options
context:
space:
mode:
Diffstat (limited to 'view/sharedcache/api/python/sharedcache_enums.py')
-rw-r--r--view/sharedcache/api/python/sharedcache_enums.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/view/sharedcache/api/python/sharedcache_enums.py b/view/sharedcache/api/python/sharedcache_enums.py
index 9a98eba4..d772adda 100644
--- a/view/sharedcache/api/python/sharedcache_enums.py
+++ b/view/sharedcache/api/python/sharedcache_enums.py
@@ -26,6 +26,13 @@ class SharedCacheRegionType(enum.IntEnum):
SharedCacheRegionTypeNonImage = 3
+class SymbolBinding(enum.IntEnum):
+ NoBinding = 0
+ LocalBinding = 1
+ GlobalBinding = 2
+ WeakBinding = 3
+
+
class SymbolType(enum.IntEnum):
FunctionSymbol = 0
ImportAddressSymbol = 1