X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/c407055e1cc6ff4c435114091c3a5430486aa659..558540cc250c19c9617a3f3f12a0f5da38c9c84a:/emufs/idx.h diff --git a/emufs/idx.h b/emufs/idx.h index 7e7cff9..4dfeda2 100644 --- a/emufs/idx.h +++ b/emufs/idx.h @@ -45,15 +45,29 @@ #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*); + int emufs_idx_crear(EMUFS*); -EMUFS_REG_ID emufs_idx_buscar_mayor_id(EMUFS *); -EMUFS_BLOCK_ID emufs_idx_buscar_registro(EMUFS *, EMUFS_REG_ID); -int emufs_idx_agregar(EMUFS *, EMUFS_BLOCK_ID, EMUFS_REG_ID); -int emufs_idx_borrar(EMUFS *emu, EMUFS_REG_ID); + +EMUFS_REG_ID emufs_idx_buscar_mayor_id_libre(EMUFS*, int*); + +EMUFS_BLOCK_ID emufs_idx_buscar_registro(EMUFS*, EMUFS_REG_ID); + +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 */