diff options
Diffstat (limited to 'src/decomp/expr/block.h')
-rw-r--r-- | src/decomp/expr/block.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/decomp/expr/block.h b/src/decomp/expr/block.h index 4ae4ff1..b0c2baa 100644 --- a/src/decomp/expr/block.h +++ b/src/decomp/expr/block.h @@ -57,6 +57,9 @@ GDecInstruction *g_expr_block_new(GDecInstruction *); /* Ajoute une instruction décompilée au conteneur existant. */ void g_expr_block_add_item(GExprBlock *, GDecInstruction *); +/* Supprime une instruction décompilée du conteneur existant. */ +void g_expr_block_delete_item(GExprBlock *, GDecInstruction *); + #endif /* _DECOMP_EXPR_BLOCK_H */ |