summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/arch/operands/immediate.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pychrysalide/arch/operands/immediate.h')
-rw-r--r--plugins/pychrysalide/arch/operands/immediate.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/pychrysalide/arch/operands/immediate.h b/plugins/pychrysalide/arch/operands/immediate.h
index 9f32758..fe5d4a9 100644
--- a/plugins/pychrysalide/arch/operands/immediate.h
+++ b/plugins/pychrysalide/arch/operands/immediate.h
@@ -31,12 +31,32 @@
+/* ------------------------- OPERANDE POUR VALEUR IMMEDIATE ------------------------- */
+
+
/* Fournit un accès à une définition de type à diffuser. */
PyTypeObject *get_python_imm_operand_type(void);
/* Prend en charge l'objet 'pychrysalide.arch.ImmOperand'. */
bool ensure_python_imm_operand_is_registered(void);
+/* Tente de convertir en opérande de valeur immédiate. */
+int convert_to_imm_operand(PyObject *, void *);
+
+
+
+/* ----------------------- REMPLACEMENT DE VALEURS IMMEDIATES ----------------------- */
+
+
+/* Fournit un accès à une définition de type à diffuser. */
+PyTypeObject *get_python_known_imm_operand_type(void);
+
+/* Prend en charge l'objet 'pychrysalide.arch.KnownImmOperand'. */
+bool ensure_python_known_imm_operand_is_registered(void);
+
+/* Tente de convertir en remplaçant d'opérande d'immédiat. */
+int convert_to_known_imm_operand(PyObject *, void *);
+
#endif /* _PLUGINS_PYCHRYSALIDE_ARCH_OPERANDS_IMMEDIATE_H */