summaryrefslogtreecommitdiff
path: root/src/arch/processor-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-08-07 18:08:47 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-08-07 18:08:47 (GMT)
commit0442cf03782e65bd680449cc213ace9a21bb081b (patch)
tree1ad713e14aeba3189c77454c219b7ab398331615 /src/arch/processor-int.h
parentae2be2044d39abebfa7b8d5ce64571e72f7ff6fd (diff)
Removed old code used for decompilation.
Diffstat (limited to 'src/arch/processor-int.h')
-rw-r--r--src/arch/processor-int.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/arch/processor-int.h b/src/arch/processor-int.h
index ac8dbf8..475fadc 100644
--- a/src/arch/processor-int.h
+++ b/src/arch/processor-int.h
@@ -36,9 +36,6 @@
/* Fournit un contexte propre au processeur d'une architecture. */
typedef GProcContext * (* get_processor_context_fc) (const GArchProcessor *);
-/* Fournit un contexte lié au processeur pour une décompilation. */
-//typedef GDecContext * (* get_decomp_context_fc) (const GArchProcessor *);
-
/* Désassemble une instruction dans un flux de données. */
typedef GArchInstruction * (* disass_instr_fc) (const GArchProcessor *, GProcContext *, const GBinContent *, vmpa2t *, GExeFormat *);
@@ -101,7 +98,6 @@ struct _GArchProcessorClass
GObjectClass parent; /* A laisser en premier */
get_processor_context_fc get_ctx; /* Obtention d'un contexte #1 */
- //get_decomp_context_fc get_dec_ctx; /* Obtention d'un contexte #2 */
disass_instr_fc disassemble; /* Traduction en instructions */