diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-08-02 22:25:15 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-08-02 22:25:15 (GMT) |
commit | 8c84aa2e41305fd388b7dac49f29ae17ee0554fb (patch) | |
tree | 52830a7d896e2d9272e7c71677c72ce9d62cf26c /plugins/pychrysalide | |
parent | 30fc2ba22b469e38bc40e47f517988e418c178f3 (diff) |
Introduced symbols dedicated to strings.
Diffstat (limited to 'plugins/pychrysalide')
-rw-r--r-- | plugins/pychrysalide/format/symbol.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/pychrysalide/format/symbol.c b/plugins/pychrysalide/format/symbol.c index 7dcb0eb..d6298d4 100644 --- a/plugins/pychrysalide/format/symbol.c +++ b/plugins/pychrysalide/format/symbol.c @@ -342,13 +342,14 @@ static bool py_binary_symbol_define_constants(PyTypeObject *obj_type) result &= PyDict_AddIntMacro(obj_type, STP_CODE_LABEL); result &= PyDict_AddIntMacro(obj_type, STP_OBJECT); result &= PyDict_AddIntMacro(obj_type, STP_ENTRY_POINT); - result &= PyDict_AddIntMacro(obj_type, STP_STRING); result &= PyDict_AddIntMacro(obj_type, STP_RO_STRING); + result &= PyDict_AddIntMacro(obj_type, STP_DYN_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); + result &= PyDict_AddIntMacro(obj_type, SSS_DYNAMIC); return result; |