summaryrefslogtreecommitdiff
path: root/src/decomp/expr/call.h
diff options
context:
space:
mode:
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 *);