]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo3.h
- Se cambia el prototipo de la funciĆ³n grabar_registro() para que acepte como
[z.facultad/75.06/emufs.git] / emufs / tipo3.h
index d3255439985ae89594b33f9b58ae195e16476bdf..f17081f5fdc754b615df36a696c5c9a5655ffd09 100644 (file)
@@ -54,15 +54,15 @@ void* emufs_tipo3_leer_registro(EMUFS*, EMUFS_REG_ID, int*);
 void* emufs_tipo3_leer_bloque(EMUFS*, EMUFS_BLOCK_ID, int*);
 
 /** Graba el registro apuntado por \param ptr en el archivo */
-EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE);
+EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE, int*);
 
 /** Graba el bloque apuntado por \param ptr en el archivo */
 int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num_bloque);
 
+int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg);
+
 EMUFS_REG_ID emufs_tipo3_get_id(EMUFS *emu);
 
 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_ */