diff options
Diffstat (limited to 'plugins/stackvars')
-rw-r--r-- | plugins/stackvars/operand.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/stackvars/operand.c b/plugins/stackvars/operand.c index 387f766..503a065 100644 --- a/plugins/stackvars/operand.c +++ b/plugins/stackvars/operand.c @@ -57,9 +57,6 @@ static void g_stack_var_operand_class_init(GStackVarOperandClass *); /* Initialise l'instande d'un opérandes de substitution. */ static void g_stack_var_operand_init(GStackVarOperand *); -/* Ajoute à un texte GTK le contenu d'un opérande. */ -static void g_stack_var_operand_add_to_gtk_buffer(const GStackVarOperand *, const GExeFormat *, AsmSyntax, GtkTextBuffer *, GtkTextIter *); - /* Indique le type défini pour un opérande de substitution pour variable de pile. */ @@ -102,7 +99,7 @@ static void g_stack_var_operand_init(GStackVarOperand *operand) parent = G_CONTENT_EXPORTER(operand); - parent->add_arch_to_gtk_buffer = (add_arch_to_gtk_buffer_fc)g_stack_var_operand_add_to_gtk_buffer; + //parent->add_arch_to_gtk_buffer = (add_arch_to_gtk_buffer_fc)g_stack_var_operand_add_to_gtk_buffer; } @@ -133,7 +130,7 @@ GArchOperand *g_stack_var_operand_new(const GBinRoutine *routine, const GX86ModR } - +#if 0 /****************************************************************************** * * * Paramètres : operand = opérande à transcrire. * @@ -174,3 +171,4 @@ static void g_stack_var_operand_add_to_gtk_buffer(const GStackVarOperand *operan "]", 1, RTT_HOOK); } +#endif |