+ if ((f_data = fopen(name_f,"r+")) == NULL) return -1; /* ERROR */
+
+ /* Preparo el garbage y se lo tiro encima */
+ fill_size = amount+sizeof(EMUFS_REG_ID)+sizeof(EMUFS_REG_SIZE);
+ dummyfill = (char*)malloc(fill_size);
+ ptr_cur = dummyfill;
+ for (byte_count = 0; byte_count < fill_size; ++byte_count) memcpy(ptr_cur+byte_count,"#",1);
+ fseek(f_data,reg_pos,SEEK_SET);
+ fwrite(dummyfill,fill_size,1,f_data);
+ fclose(f_data);
+
+ free(dummyfill);
+ return (0);
+}
+
+/* Realiza la actualizacin de un registro ya existente */
+EMUFS_REG_ID emufs_tipo2_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error)
+{
+ emufs_tipo2_borrar_registro(emu, id);
+ return emufs_tipo2_grabar_registro(emu, data, size, error);
+}
+
+/* Recompila y devuelve ciertas estadisticas del archivo indicado */
+EMUFS_Estadisticas emufs_tipo2_leer_estadisticas(EMUFS *emu)
+{
+ EMUFS_Estadisticas stats;
+ char name_f[255];
+ FILE *file;
+
+ strcpy(name_f,emu->nombre);
+ strcat(name_f,".dat");
+
+ /* Inicializo las stats por si hay error somewhere */
+ stats.tam_archivo = 0;
+ stats.tam_archivo_bytes = 0;
+ stats.info_control = 0;
+ stats.media_fs = 0;
+ stats.total_fs = 0;
+ stats.max_fs = 0;
+ stats.min_fs = 0;
+ stats.cant_bloques = 0;
+
+ /* Obtengo las stats de FSC */
+ stats.total_fs = emufs_fsc_get_total_fs(emu);
+ stats.media_fs = emufs_fsc_get_media_fs(emu);
+ emufs_fsc_get_max_min_fs(emu,&stats.min_fs,&stats.max_fs);
+
+ /* Faltan stats pero como cambia el API Idx, espero... */
+ if ( (file = fopen(name_f,"ab")) == NULL){
+ PERR("No se pudo abrir el archivo");
+ return stats;
+ }
+ stats.tam_archivo_bytes = ftell(file);
+ fclose(file);