summaryrefslogtreecommitdiff
path: root/src/plugins/plugin-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/plugin-int.h')
-rw-r--r--src/plugins/plugin-int.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/plugin-int.h b/src/plugins/plugin-int.h
index cee6242..8df3527 100644
--- a/src/plugins/plugin-int.h
+++ b/src/plugins/plugin-int.h
@@ -53,12 +53,12 @@ typedef void (* pg_include_theme_fc) (const GPluginModule *, PluginAction, char
/* Assure l'interprétation d'un format en différé. */
typedef bool (* pg_handle_format_analysis_fc) (const GPluginModule *, PluginAction, GBinFormat *, wgroup_id_t, GtkStatusStack *);
-/* Procède à une opération liée au format de fichier uniquement. */
-typedef bool (* pg_handle_format_fc) (const GPluginModule *, PluginAction, GBinFormat *, GtkStatusStack *);
-
/* Procède à un préchargement de format de fichier. */
typedef bool (* pg_preload_format_fc) (const GPluginModule *, PluginAction, GBinFormat *, GPreloadInfo *, GtkStatusStack *);
+/* Procède au rattachement d'éventuelles infos de débogage. */
+typedef void (* pg_attach_debug) (const GPluginModule *, PluginAction, GExeFormat *);
+
/* Exécute une action pendant un désassemblage de binaire. */
typedef void (* pg_process_disassembly_fc) (const GPluginModule *, PluginAction, GLoadedBinary *, GtkStatusStack *, GProcContext *);
@@ -89,8 +89,8 @@ struct _GPluginModule
pg_handle_loaded_fc handle_loaded; /* Traitement de contenu chargé*/
pg_handle_format_analysis_fc handle_fmt_analysis; /* Analyse de format */
- pg_handle_format_fc handle_format; /* Manipulation du format */
pg_preload_format_fc preload_format; /* Préchargement d'un format */
+ pg_attach_debug attach_debug; /* Informations de débogage */
pg_process_disassembly_fc process_disass; /* Catégorie 'désassemblage' */