X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/32feb1e82b00d6c1ad3f5aa6884d003a665ea975..558540cc250c19c9617a3f3f12a0f5da38c9c84a:/emufs/idx.h diff --git a/emufs/idx.h b/emufs/idx.h index 40bf539..4dfeda2 100644 --- a/emufs/idx.h +++ b/emufs/idx.h @@ -45,8 +45,8 @@ #define EMUFS_IDX_EXT ".idx" typedef struct emufs_idx_t { - unsigned long int n_idreg; - unsigned long int n_location; + EMUFS_REG_ID id_reg; + EMUFS_BLOCK_ID location; } EMUFS_IDX; FILE* emufs_idx_abrir(EMUFS*, const char*); @@ -61,6 +61,13 @@ int emufs_idx_agregar(EMUFS*, EMUFS_BLOCK_ID, EMUFS_REG_ID); int emufs_idx_borrar(EMUFS*, EMUFS_REG_ID); +EMUFS_REG_ID emufs_idx_get_count(EMUFS *); + +EMUFS_REG_ID emufs_idx_get_id_at(EMUFS *, long pos); + EMUFS_REG_ID emufs_idx_get_new_id(EMUFS*, int*); +/*me informa la cantidad de registros existentes en .dat*/ +int emufs_idx_get_cant_reg(EMUFS*); + #endif /* _EMUFS_IDX_H */