X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/e47297a011fb5230c79464af7cd72e78b266fc48..2b317be73e4cfc0751df22597752cd98ce51740c:/emufs/tipo3.h diff --git a/emufs/tipo3.h b/emufs/tipo3.h index ad84d81..e52986a 100644 --- a/emufs/tipo3.h +++ b/emufs/tipo3.h @@ -47,26 +47,22 @@ #include "idx.h" #include "fsc.h" - /** Lee el registro \param id_reg y lo almacena en \param ptr */ -int emufs_tipo3_leer_registro(EMUFS *emu, int id_reg, void *ptr, unsigned long tam_reg); +int emufs_tipo3_leer_registro(EMUFS *emu, EMUFS_REG_ID id_reg, void *ptr); /** Lee el bloque \param num_bloque y lo almacena en \param ptr */ -int emufs_tipo3_leer_bloque(EMUFS *emu, int num_bloque, void *ptr); +int emufs_tipo3_leer_bloque(EMUFS *emu, EMUFS_BLOCK_ID num_bloque, void *ptr); /** Graba el registro apuntado por \param ptr en el archivo */ -int emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, unsigned long tam_reg); +EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr); /** Graba el bloque apuntado por \param ptr en el archivo */ -int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, int num_bloque); - -int emufs_tipo3_get_id(EMUFS *emu); - -int emufs_tipo3_buscar_registro(EMUFS *emu, int id_reg); +int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num_bloque); -int emufs_tipo3_buscar_lugar(EMUFS *emu, unsigned long tam_reg, int *free_space); +EMUFS_REG_ID emufs_tipo3_get_id(EMUFS *emu); -int emufs_tipo3_borrar_registro(EMUFS *emu, int id_reg, unsigned long tam_reg); +int emufs_tipo3_buscar_registro(EMUFS *emu, EMUFS_REG_ID id_reg); +int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg); #endif /* _EMUFS_TIPO3_H_ */