X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/c1df639f58f6d3c08247c1543916644e375f8ce2..f8a441d3986f96851c8201fe82c5ce328b582d05:/emufs/tipo3.h diff --git a/emufs/tipo3.h b/emufs/tipo3.h index 84f610f..54fb03c 100644 --- a/emufs/tipo3.h +++ b/emufs/tipo3.h @@ -46,7 +46,7 @@ #include "did.h" #include "idx.h" #include "fsc.h" -#include "b_plus.h" +#include "indice_bplus.h" /** Devuelve un puntero con la memoria reservada que contiene al registro solicitado * por el segundo parámetro \c ID, y almacena en \c reg_size el tamaño del @@ -138,9 +138,9 @@ void emufs_tipo3_leer_bloque_raw(EMUFS *emu, EMUFS_BLOCK_ID block_id, char **act /** Inserta un registro ordenado segun el Arbol B+ lo indique * \param emu Esructura para manejar los archivos. * \param ptr Cadena de datos contenedora del registro. - * \param ind Indice del archivo. * \param err Codigo de error devuelto en caso de falla. */ -int emufs_tipo3_insertar_ordenado(EMUFS *emu, void *ptr, INDICE *ind, int *err); +int emufs_tipo3_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, int *err); +int emufs_tipo3_eliminar_ordenado(EMUFS *emu, CLAVE clave, int *err); #endif /* _EMUFS_TIPO3_H_ */