diff options
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: |