diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2018-05-14 15:52:32 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2018-05-14 15:52:32 (GMT) | 
| commit | 6178efcee9fc18d11a773827dca8b95304e75731 (patch) | |
| tree | 77c664dfac355b7af803d33b1afded7925647b6d /tools/d2c/hooks/manager.h | |
| parent | aba51093c8ebe4b0550557281f8d0d025027b1cb (diff) | |
Used unique identifiers for instructions everywhere.
Diffstat (limited to 'tools/d2c/hooks/manager.h')
| -rw-r--r-- | tools/d2c/hooks/manager.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/d2c/hooks/manager.h b/tools/d2c/hooks/manager.h index c07269e..49ebd19 100644 --- a/tools/d2c/hooks/manager.h +++ b/tools/d2c/hooks/manager.h @@ -43,10 +43,10 @@ void delete_instr_hooks(instr_hooks *);  /* Enregistre l'utilité d'une fonction pour une instruction. */  void register_hook_function(instr_hooks *, char *, char *); -/* Déclare des opérations complémentaires pour une instruction. */ -bool declare_hook_functions(const instr_hooks *, int); +/* Indique si des décrochages sont définis. */ +bool has_hook_functions(const instr_hooks *); -/* Associe dans le code des fonctions à une instruction. */ +/* Imprime une liste de décrochages spécifiés. */  bool write_hook_functions(const instr_hooks *, int);  | 
