X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/997a97b5e42afccbc75f2e2dde61f1e74856cb86..fe7cadabd775ddd59714749b7dfe31a578c6ecca:/emufs/tipo3.h diff --git a/emufs/tipo3.h b/emufs/tipo3.h index df448c1..92ee8de 100644 --- a/emufs/tipo3.h +++ b/emufs/tipo3.h @@ -48,6 +48,10 @@ #include "fsc.h" #include "indice_bplus.h" +int emufs_tipo3_inicializar(EMUFS* efs); + +int emufs_tipo5_inicializar(EMUFS* efs); + /** 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 * registro leido, que en este caso no es necesario pues es constante y es conocicdo de antemano. @@ -140,7 +144,11 @@ void emufs_tipo3_leer_bloque_raw(EMUFS *emu, EMUFS_BLOCK_ID block_id, char **act * \param ptr Cadena de datos contenedora del registro. * \param err Codigo de error devuelto en caso de falla. */ -int emufs_tipo3_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, int *err); +EMUFS_REG_ID emufs_tipo3_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, int *err); + +int emufs_tipo3_eliminar_ordenado(EMUFS *emu, CLAVE clave,INDICE_DATO dato); + +void *emufs_tipo3_leer_registro_plus(EMUFS *emu, CLAVE clave, EMUFS_REG_SIZE *size, int *err); -int emufs_tipo3_eliminar_ordenado(EMUFS *emu, CLAVE clave, int *err); +EMUFS_REG_ID emufs_tipo3_modificar_registro_plus(EMUFS *emu, CLAVE k, void*, EMUFS_REG_SIZE, int*, INDICE_DATO); #endif /* _EMUFS_TIPO3_H_ */