X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/ee8568afe20289bebd04904350c3f2563fc90e4a..83110706b7a81ad5a9964c92823b7827d9088256:/emufs/tipo1.h diff --git a/emufs/tipo1.h b/emufs/tipo1.h index 113a66d..efd68c9 100644 --- a/emufs/tipo1.h +++ b/emufs/tipo1.h @@ -39,25 +39,32 @@ #define _EMUFS_TIPO1_H_ #include "emufs.h" -#include "did.h" -#include "idx.h" -#include "fsc.h" -int emufs_tipo1_leer_registro(EMUFS *, int , void *, unsigned long); +int emufs_tipo1_inicializar(EMUFS*); -int emufs_tipo1_leer_bloque(EMUFS *, int , void *); +/** Lee el registro \param id_reg y lo almacena en \param ptr */ +int emufs_tipo1_leer_registro(EMUFS *emu, EMUFS_REG_ID id_reg, void *ptr, + EMUFS_REG_SIZE tam_reg); -int emufs_tipo1_grabar_registro(EMUFS *, void *, unsigned long ); +/** Lee el bloque \param num_bloque y lo almacena en \param ptr */ +int emufs_tipo1_leer_bloque(EMUFS *emu, EMUFS_BLOCK_ID num_bloque, void *ptr); -int emufs_tipo1_grabar_bloque(EMUFS *, void *, int); +/** Graba el registro apuntado por \param ptr en el archivo */ +EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* emu, void* ptr, EMUFS_REG_SIZE); -int emufs_tipo1_get_id(EMUFS *); +/** Graba el bloque apuntado por \param ptr en el archivo */ +int emufs_tipo1_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num_bloque); -int emufs_tipo1_buscar_registro(EMUFS *, int); +EMUFS_REG_ID emufs_tipo1_get_id(EMUFS *emu); -int emufs_tipo1_buscar_lugar(EMUFS *, unsigned long , int *); +int emufs_tipo1_buscar_registro(EMUFS *emu, EMUFS_REG_ID id_reg); -int emufs_tipo1_borrar_registro(EMUFS*, int, unsigned long); +int emufs_tipo1_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg, + EMUFS_REG_SIZE tam_reg); +/* +int emufs_tipo1_buscar_lugar(EMUFS *emu, EMUFS_REG_SIZE tam_reg, + EMUFS_FREE *free_space); +*/ #endif /* _EMUFS_TIPO1_H_ */