diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2010-11-14 16:30:10 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2010-11-14 16:30:10 (GMT) | 
| commit | 4fd2ebd6ef0875b5d7d632db735d0510e19d4570 (patch) | |
| tree | 58778508862e4dc3412b3391b56109871831e126 /src/format/format-int.h | |
| parent | ae8cf6257c8d929de1b7ee86e29fcb45ab4af91c (diff) | |
Loaded source file from Dex classes.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@193 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format/format-int.h')
| -rw-r--r-- | src/format/format-int.h | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/src/format/format-int.h b/src/format/format-int.h index 319f5cd..27d4129 100644 --- a/src/format/format-int.h +++ b/src/format/format-int.h @@ -32,6 +32,10 @@  /* ------------------------ TRAITEMENT INDIVIDUEL DE FORMATS ------------------------ */ +/* Procède à la décompilation complète du format. */ +typedef void (* format_decompile_fc) (const GBinFormat *, GCodeBuffer *, const char *); + +  /* Format binaire générique (instance) */  struct _GBinFormat  { @@ -46,6 +50,8 @@ struct _GBinFormat      GBinRoutine **routines;                 /* Liste des routines trouvées */      size_t routines_count;                  /* Nombre de ces routines      */ +    format_decompile_fc decompile;          /* Décompilation d'un fichier  */ +  };  /* Format binaire générique (classe) */  | 
