diff options
Diffstat (limited to 'src/arch/operand-int.h')
-rw-r--r-- | src/arch/operand-int.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/arch/operand-int.h b/src/arch/operand-int.h index f21b995..51f392b 100644 --- a/src/arch/operand-int.h +++ b/src/arch/operand-int.h @@ -30,17 +30,22 @@ +/* Compare un opérande avec un autre. */ +typedef bool (* operand_compare_fc) (const GArchOperand *, const GArchOperand *); + /* Traduit un opérande en version humainement lisible. */ typedef char * (* get_operand_text_fc) (const GArchOperand *, const GExeFormat *, AsmSyntax); /* Traduit un opérande en version humainement lisible. */ typedef void (* operand_print_fc) (const GArchOperand *, GBufferLine *, AsmSyntax); + /* Définition générique d'un opérande d'architecture (instance) */ struct _GArchOperand { GContentExporter parent; /* A laisser en premier */ + operand_compare_fc compare; /* Comparaison d'opérandes */ get_operand_text_fc get_text; /* Texte humain équivalent */ operand_print_fc print; /* Texte humain équivalent */ |