X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/5c0d358fe5d851c242833cab7c5a6765007097ae..defa938b3f327a42634161a5815e06f94b20b554:/emufs/tipo2.h diff --git a/emufs/tipo2.h b/emufs/tipo2.h index e1f6733..da79dc4 100644 --- a/emufs/tipo2.h +++ b/emufs/tipo2.h @@ -78,7 +78,7 @@ int emufs_tipo2_inicializar(EMUFS* efs); * \param err Indicador de error en la operacion. * \return \b void* Buffer con el registro leido. */ -void *emufs_tipo2_leer_registro(EMUFS* efs, EMUFS_REG_ID id_reg, EMUFS_REG_SIZE* reg_size, int *err); +void *emufs_tipo2_leer_registro(EMUFS* efs, CLAVE clave, EMUFS_REG_SIZE* reg_size, int *err); /** Realiza la escritura de un registro en archivos del tipo 2 en base a su \em ID, devolviendo ademas el \em Size del * registro leido. @@ -97,7 +97,7 @@ EMUFS_REG_ID emufs_tipo2_grabar_registro(EMUFS *efs, void *ptr, EMUFS_REG_SIZE r * \param id_reg Id del registro que se quiere eliminar. * \return \b int Indicador de exito de la operacion. */ -int emufs_tipo2_borrar_registro(EMUFS *efs, EMUFS_REG_ID id_reg); +int emufs_tipo2_borrar_registro(EMUFS *efs, CLAVE k); /** Devuelve el \em Size de un registro dado, en base a su \em ID. * @@ -149,4 +149,7 @@ void emufs_tipo2_movedata(FILE * datfile,EMUFS_OFFSET *source, EMUFS_OFFSET *des */ int emufs_tipo2_updateidx(EMUFS *efs); +/** Método para leer un registro con todo su bloque asociado. */ +void* emufs_tipo2_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID id, EMUFS_REG_SIZE *size, int *pos); + #endif /* _EMUFS_TIPO2_H_ */