summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-05-19 13:09:40 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-05-19 13:09:40 (GMT)
commitb137bd32940c08f39e9e61c9ec3be2e18c1b93cd (patch)
treee265c8533f80dad0ef84e34d529f1fcaff83f232 /plugins/pychrysalide
parentd18e9e686615c833491b350726d56931aed7075c (diff)
Registered symbols status identifiers in the Python bindings.
Diffstat (limited to 'plugins/pychrysalide')
-rw-r--r--plugins/pychrysalide/format/symbol.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/pychrysalide/format/symbol.c b/plugins/pychrysalide/format/symbol.c
index 5ddaca2..ae13cf2 100644
--- a/plugins/pychrysalide/format/symbol.c
+++ b/plugins/pychrysalide/format/symbol.c
@@ -342,6 +342,10 @@ static bool py_binary_symbol_define_constants(PyTypeObject *obj_type)
result &= PyDict_AddIntMacro(obj_type, STP_RO_STRING);
result &= PyDict_AddIntMacro(obj_type, STP_COUNT);
+ result &= PyDict_AddIntMacro(obj_type, SSS_INTERNAL);
+ result &= PyDict_AddIntMacro(obj_type, SSS_EXPORTED);
+ result &= PyDict_AddIntMacro(obj_type, SSS_IMPORTED);
+
return result;
}