diff options
Diffstat (limited to 'plugins/dexresolver')
| -rw-r--r-- | plugins/dexresolver/context.c | 12 | ||||
| -rw-r--r-- | plugins/dexresolver/context.h | 2 | ||||
| -rw-r--r-- | plugins/dexresolver/plugin.c | 2 | ||||
| -rw-r--r-- | plugins/dexresolver/plugin.h | 2 | 
4 files changed, 9 insertions, 9 deletions
diff --git a/plugins/dexresolver/context.c b/plugins/dexresolver/context.c index 19be9c0..b63ccf3 100644 --- a/plugins/dexresolver/context.c +++ b/plugins/dexresolver/context.c @@ -51,7 +51,7 @@ typedef struct _GDexResolverWork  {      GDelayedWork parent;                    /* A laisser en premier        */ -    GOpenidaBinary *binary;                 /* Destinataire final          */ +    GLoadedBinary *binary;                  /* Destinataire final          */  } GDexResolverWork; @@ -74,7 +74,7 @@ static void g_dex_resolver_work_class_init(GDexResolverWorkClass *);  static void g_dex_resolver_work_init(GDexResolverWork *);  /* Crée une tâche de résolution d'opérandes différée. */ -static GDexResolverWork *g_dex_resolver_work_new(GOpenidaBinary *); +static GDexResolverWork *g_dex_resolver_work_new(GLoadedBinary *);  /* Assure la résolution d'opérandes en différé. */  static void g_dex_resolver_work_process(GDexResolverWork *, GtkExtStatusBar *); @@ -172,7 +172,7 @@ static void g_dex_resolver_work_init(GDexResolverWork *disass)  *                                                                             *  ******************************************************************************/ -static GDexResolverWork *g_dex_resolver_work_new(GOpenidaBinary *binary) +static GDexResolverWork *g_dex_resolver_work_new(GLoadedBinary *binary)  {      GDexResolverWork *result;               /* Tâche à retourner           */ @@ -209,9 +209,9 @@ static void g_dex_resolver_work_process(GDexResolverWork *work, GtkExtStatusBar      const GArchOperand *op;                 /* Opérande à analyser         */      GArchOperand *new;                      /* Nouvel opérande à afficher  */ -    format = G_DEX_FORMAT(g_openida_binary_get_format(work->binary)); +    format = G_DEX_FORMAT(g_loaded_binary_get_format(work->binary)); -    lines = g_openida_binary_get_lines(work->binary); +    lines = g_loaded_binary_get_lines(work->binary);      for (iter = lines;           iter != NULL; @@ -303,7 +303,7 @@ static void g_dex_resolver_context_init(GDexResolverContext *context)  *                                                                             *  ******************************************************************************/ -GPluginContext *g_dex_resolver_context_new(GOpenidaBinary *binary) +GPluginContext *g_dex_resolver_context_new(GLoadedBinary *binary)  {      GPluginContext *result;                 /* Bilan d'exécution à renvoyer*/      GDexResolverWork *work;                 /* Tâche de parcours de lignes */ diff --git a/plugins/dexresolver/context.h b/plugins/dexresolver/context.h index 79e4204..bcc4f19 100644 --- a/plugins/dexresolver/context.h +++ b/plugins/dexresolver/context.h @@ -50,7 +50,7 @@ typedef struct _GDexResolverContextClass GDexResolverContextClass;  GType g_dex_resolver_context_get_type(void);  /* Lance l'exécution d'une action du greffon. */ -GPluginContext *g_dex_resolver_context_new(GOpenidaBinary *); +GPluginContext *g_dex_resolver_context_new(GLoadedBinary *); diff --git a/plugins/dexresolver/plugin.c b/plugins/dexresolver/plugin.c index 356f7cf..7a2fe77 100644 --- a/plugins/dexresolver/plugin.c +++ b/plugins/dexresolver/plugin.c @@ -98,7 +98,7 @@ G_MODULE_EXPORT PluginAction get_plugin_action(void)  *                                                                             *  ******************************************************************************/ -G_MODULE_EXPORT bool execute_action_on_binary(GOpenidaBinary *binary, PluginAction action) +G_MODULE_EXPORT bool execute_action_on_binary(GLoadedBinary *binary, PluginAction action)  {      bool result;                            /* Bilan à retourner           */ diff --git a/plugins/dexresolver/plugin.h b/plugins/dexresolver/plugin.h index 85da278..c5a1a97 100644 --- a/plugins/dexresolver/plugin.h +++ b/plugins/dexresolver/plugin.h @@ -42,7 +42,7 @@ G_MODULE_EXPORT PluginType get_plugin_type(void);  G_MODULE_EXPORT PluginAction get_plugin_action(void);  /* Exécute une action définie sur un binaire chargé. */ -G_MODULE_EXPORT bool execute_action_on_binary(GOpenidaBinary *, PluginAction); +G_MODULE_EXPORT bool execute_action_on_binary(GLoadedBinary *, PluginAction);  | 
