summaryrefslogtreecommitdiff
path: root/src/decomp/expr/call.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-07-23 19:07:29 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-07-23 19:07:29 (GMT)
commit8b35a66464636d0c46237af7490a6ca6866ecc4d (patch)
tree92199b36e3af00eb4c175a80c20b9b14511a6a45 /src/decomp/expr/call.h
parent8b2189a819c7a761cfdb97d9e3382ea963f225fb (diff)
Improved decompilation of Dalvik bytecode.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@252 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/decomp/expr/call.h')
-rw-r--r--src/decomp/expr/call.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/decomp/expr/call.h b/src/decomp/expr/call.h
index 7515261..8856166 100644
--- a/src/decomp/expr/call.h
+++ b/src/decomp/expr/call.h
@@ -54,7 +54,10 @@ typedef struct _GRoutineCallClass GRoutineCallClass;
GType g_routine_call_get_type(void);
/* Exprime un appel à une routine quelconque. */
-GDecInstruction *g_routine_call_new(GBinRoutine *, bool);
+GDecInstruction *g_routine_call_new(GBinRoutine *);
+
+/* Enregistre un nouvel argument pour l'appel de routine. */
+void g_routine_call_add_arg(GRoutineCall *, GDecInstruction *);