X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/558540cc250c19c9617a3f3f12a0f5da38c9c84a..bf8259284603ef16c6bb1c44438f2a13ad526a9a:/emufs/idx.h?ds=inline diff --git a/emufs/idx.h b/emufs/idx.h index 4dfeda2..dd0fe60 100644 --- a/emufs/idx.h +++ b/emufs/idx.h @@ -61,13 +61,18 @@ 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); +/** Retorna un array con los Ids validos del archivo IDX + * + * EL ARRAY DEBE SER LIBERADO! + * \param emu EMUFS + * \param cant Puntero donde guardar la cantidad de items + */ +EMUFS_REG_ID *emufs_idx_get(EMUFS *emu, EMUFS_REG_ID *cant); 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*); +int emufs_idx_existe_id(EMUFS *emu, int ID); + +int emufs_idx_actualizar(EMUFS *emu, int ID, EMUFS_BLOCK_ID bloque); #endif /* _EMUFS_IDX_H */