diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-11-24 22:26:04 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-11-24 22:26:04 (GMT) |
commit | 643ad3b7981e4da54c1748e72b525a1f477ea155 (patch) | |
tree | f813720a07a420748f90d6daf3b66aa525e2642a /plugins/pychrysalide/analysis/db | |
parent | cef46f9f06a7448db60116e8c0ccadee44d83692 (diff) |
Defined special values of memory locations for Python.
Diffstat (limited to 'plugins/pychrysalide/analysis/db')
-rw-r--r-- | plugins/pychrysalide/analysis/db/constants.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/plugins/pychrysalide/analysis/db/constants.c b/plugins/pychrysalide/analysis/db/constants.c index 07c7a06..76385fd 100644 --- a/plugins/pychrysalide/analysis/db/constants.c +++ b/plugins/pychrysalide/analysis/db/constants.c @@ -1,6 +1,6 @@ /* Chrysalide - Outil d'analyse de fichiers binaires - * constants.c - équivalent Python partiel du fichier "plugins/dex/dex_def.h" + * constants.c - ajout des constantes liées aux bases de données * * Copyright (C) 2018 Cyrille Bagard * @@ -63,7 +63,8 @@ bool define_db_protocol_constants(PyTypeObject *type) goto exit; } - result = attach_constants_group(type, false, "DBFeatures", values, "Features provided by database items."); + result = attach_constants_group(type, false, "DBFeatures", values, + "Features provided by database items."); exit: @@ -104,7 +105,8 @@ bool define_db_item_constants(PyTypeObject *type) goto exit; } - result = attach_constants_group(type, true, "DbItemFlags", values, "Properties of a database item."); + result = attach_constants_group(type, true, "DbItemFlags", values, + "Properties of a database item."); exit: @@ -142,7 +144,8 @@ bool define_hub_server_constants(PyTypeObject *type) goto exit; } - result = attach_constants_group(type, false, "ServerStartStatus", values, "Status of a server start."); + result = attach_constants_group(type, false, "ServerStartStatus", values, + "Status of a server start."); exit: |