X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/eab099a18ebaf8397f54955c8e740037bcee2f56..b1be8a89626ce30127758ad5e01a5c6069516fae:/emufs/idx.h diff --git a/emufs/idx.h b/emufs/idx.h index cb67b69..510e78c 100644 --- a/emufs/idx.h +++ b/emufs/idx.h @@ -20,6 +20,7 @@ *---------------------------------------------------------------------------- * Creado: jue abr 8 18:11:46 ART 2004 * Autores: Nicolás Dimov + * Leandro Lucarella *---------------------------------------------------------------------------- * * $Id$ @@ -38,21 +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_buscar_mayor_id(EMUFS *); - -int emufs_idx_buscar_registro(EMUFS *, int); - -int emufs_idx_agregar(EMUFS *, int , int); +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); #endif /* _EMUFS_IDX_H */