X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/7a86d06abb03ced86951067cf341f228acfc9f30..53cd4751dceea6f64354a7d7756b221e96ee544f:/emufs/idx.h?ds=sidebyside diff --git a/emufs/idx.h b/emufs/idx.h index a2c9736..40bf539 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$ @@ -34,16 +35,32 @@ * */ -#ifndef _IDX_H -#define _IDX_H +#ifndef _EMUFS_IDX_H +#define _EMUFS_IDX_H #include +#include #include "emufs.h" -int emufs_idx_buscar_mayor_id(EMUFS *); +#define EMUFS_IDX_EXT ".idx" -int emufs_idx_buscar_registro(EMUFS *, int); +typedef struct emufs_idx_t { + unsigned long int n_idreg; + unsigned long int n_location; +} EMUFS_IDX; -int emufs_idx_agregar(EMUFS *, int , int); +FILE* emufs_idx_abrir(EMUFS*, const char*); -#endif /* _IDX_H */ +int emufs_idx_crear(EMUFS*); + +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_new_id(EMUFS*, int*); + +#endif /* _EMUFS_IDX_H */