diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2016-09-11 21:37:36 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2016-09-11 21:37:36 (GMT) | 
| commit | 0f1473cba267ad809c8e7d207b5ff5e3998745fc (patch) | |
| tree | 8aea43688d78c10ee7758e2feed80be9abbfaaf6 /plugins/readdex/reader.c | |
| parent | fe39a487b4db5564036a436bfcb7cf3561889fb5 (diff) | |
Displayed more details about the loading process in the status bar.
Diffstat (limited to 'plugins/readdex/reader.c')
| -rw-r--r-- | plugins/readdex/reader.c | 15 | 
1 files changed, 8 insertions, 7 deletions
| diff --git a/plugins/readdex/reader.c b/plugins/readdex/reader.c index 8df489e..6494973 100644 --- a/plugins/readdex/reader.c +++ b/plugins/readdex/reader.c @@ -42,6 +42,7 @@ DEFINE_CHRYSALIDE_ACTIVE_PLUGIN("readdex", "Displays information about DEX files  *  Paramètres  : plugin = greffon à manipuler.                                *  *                action = type d'action attendue.                             *  *                format = description de l'exécutable à compléter.            * +*                status = barre de statut à tenir informée.                   *  *                                                                             *  *  Description : Etablit des symboles complémentaires dans un format DEX.     *  *                                                                             * @@ -51,7 +52,7 @@ DEFINE_CHRYSALIDE_ACTIVE_PLUGIN("readdex", "Displays information about DEX files  *                                                                             *  ******************************************************************************/ -G_MODULE_EXPORT bool handle_binary_format(const GPluginModule *plugin, PluginAction action, GBinFormat *format) +G_MODULE_EXPORT bool handle_binary_format(const GPluginModule *plugin, PluginAction action, GBinFormat *format, GtkStatusStack *status)  {      bool result;                            /* Bilan à retourner           */      GDexFormat *dex_fmt;                    /* Version DEX                 */ @@ -66,17 +67,17 @@ G_MODULE_EXPORT bool handle_binary_format(const GPluginModule *plugin, PluginAct      result = annotate_dex_header(dex_fmt); -    result &= annotate_dex_string_ids(dex_fmt); +    result &= annotate_dex_string_ids(dex_fmt, status); -    result &= annotate_dex_type_ids(dex_fmt); +    result &= annotate_dex_type_ids(dex_fmt, status); -    result &= annotate_dex_proto_ids(dex_fmt); +    result &= annotate_dex_proto_ids(dex_fmt, status); -    result &= annotate_dex_field_ids(dex_fmt); +    result &= annotate_dex_field_ids(dex_fmt, status); -    result &= annotate_dex_method_ids(dex_fmt); +    result &= annotate_dex_method_ids(dex_fmt, status); -    result &= annotate_dex_class_defs(dex_fmt); +    result &= annotate_dex_class_defs(dex_fmt, status);   hbf_exit: | 
