X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/ee8568afe20289bebd04904350c3f2563fc90e4a..ec7d4a565379cd88c256198788960d559326e47a:/emufs/idx.h?ds=sidebyside diff --git a/emufs/idx.h b/emufs/idx.h index 4055549..510e78c 100644 --- a/emufs/idx.h +++ b/emufs/idx.h @@ -39,23 +39,21 @@ #define _EMUFS_IDX_H #include +#include #include "emufs.h" #define EMUFS_IDX_EXT ".idx" typedef struct emufs_idx_t { - int block; - long int id_reg; + unsigned long int n_idreg; + unsigned long int n_location; } EMUFS_IDX; FILE* emufs_idx_abrir(EMUFS*, const char*); - int emufs_idx_crear(EMUFS*); - -int emufs_idx_buscar_mayor_id(EMUFS *); - -int emufs_idx_buscar_registro(EMUFS *, int); - -int emufs_idx_agregar(EMUFS *, int , int); +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); #endif /* _EMUFS_IDX_H */