diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-05-19 13:09:40 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-05-19 13:09:40 (GMT) |
commit | b137bd32940c08f39e9e61c9ec3be2e18c1b93cd (patch) | |
tree | e265c8533f80dad0ef84e34d529f1fcaff83f232 | |
parent | d18e9e686615c833491b350726d56931aed7075c (diff) |
Registered symbols status identifiers in the Python bindings.
-rw-r--r-- | plugins/pychrysalide/format/symbol.c | 4 |
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; } |