diff options
Diffstat (limited to 'src/analysis/binary-int.h')
-rw-r--r-- | src/analysis/binary-int.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/analysis/binary-int.h b/src/analysis/binary-int.h index 7c4b05e..8aa2e83 100644 --- a/src/analysis/binary-int.h +++ b/src/analysis/binary-int.h @@ -37,7 +37,7 @@ typedef bool (* save_binary_fc) (const GLoadedBinary *, xmlDocPtr, xmlXPathContextPtr, const char *); /* Fournit le fichier correspondant à l'élément binaire. */ -typedef const char * (* get_binary_filename_fc) (const GLoadedBinary *, bool); +typedef const char * (* get_binary_name_fc) (const GLoadedBinary *, bool); /* Description de fichier binaire (instance) */ @@ -56,7 +56,7 @@ struct _GLoadedBinary DBStorage storages[DBF_COUNT]; /* Lieux d'enregistrement */ save_binary_fc save; /* Sauvegarde au format XML */ - get_binary_filename_fc get_filename; /* Obtention d'une description */ + get_binary_name_fc get_name; /* Obtention d'une description */ off_t bin_length; /* Taille des données brutes */ bin_t *bin_data; /* Données binaires brutes */ |