summaryrefslogtreecommitdiff
path: root/src/arch/operand.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-11-05 19:45:08 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-11-05 19:45:08 (GMT)
commitc35d5d4ce62b812ec0aa4a5ebbacb84cd0901d53 (patch)
treeca0262ce4f0a24bdfbc1b9a4ffa1bbb202d47820 /src/arch/operand.h
parentf5df6496fa50927d3d274c939a888afde652b7ad (diff)
Removed the old interface for rendering lines.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@278 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/operand.h')
-rw-r--r--src/arch/operand.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/arch/operand.h b/src/arch/operand.h
index 6eac263..c0cd767 100644
--- a/src/arch/operand.h
+++ b/src/arch/operand.h
@@ -28,7 +28,6 @@
#include <glib-object.h>
-#include "../format/executable.h" /* FIXME : remme ! */
#include "../glibext/gbufferline.h"
@@ -49,15 +48,12 @@ typedef struct _GArchOperandClass GArchOperandClass;
/* Indique le type défini pour un opérande d'architecture. */
GType g_arch_operand_get_type(void);
-/* Traduit un opérande en version humainement lisible. */
-char *g_arch_operand_get_text(const GArchOperand *, const GExeFormat *, AsmSyntax);
+/* Compare un opérande avec un autre. */
+bool g_arch_operand_compare(const GArchOperand *, const GArchOperand *);
/* Traduit un opérande en version humainement lisible. */
void g_arch_operand_print(const GArchOperand *, GBufferLine *, AsmSyntax);
-/* Compare un opérande avec un autre. */
-bool g_arch_operand_compare(const GArchOperand *, const GArchOperand *);
-
#endif /* _ARCH_OPERAND_H */