]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo2.h
* Modifico el tipo que estaba mal.
[z.facultad/75.06/emufs.git] / emufs / tipo2.h
index e6b4051623bee6453610035bc36d6c8bc216ef61..f36aea2e0486798a18dafdb09782bde1a6018959 100644 (file)
 #include <unistd.h>
 #include "emufs.h"
 
-EMUFS_REG_ID emufs_tipo2_grabar_registro(EMUFS *, void *, EMUFS_REG_SIZE, int*);
+int emufs_tipo2_inicializar(EMUFS*);
+void *emufs_tipo2_leer_registro(EMUFS* , EMUFS_REG_ID , EMUFS_REG_SIZE *, int *);
+EMUFS_REG_ID emufs_tipo2_grabar_registro(EMUFS *, void *, EMUFS_REG_SIZE, int *);
 int emufs_tipo2_borrar_registro(EMUFS*, EMUFS_REG_ID);
-int emufs_tipo2_get_regsize(EMUFS *efs, EMUFS_OFFSET n_RegPos,EMUFS_REG_SIZE *n_RegSize);
-int emufs_tipo2_dummyfill(EMUFS *efs, EMUFS_OFFSET n_RegPos,EMUFS_REG_SIZE n_Amount);
-
-/* OJO!! Fijate que cambio el prototipo:
-   int emufs_tipo2_leer_registro(EMUFS *, EMUFS_REG_ID , void *, EMUFS_REG_SIZE);
-   int emufs_tipo2_buscar_registro(EMUFS *, int); */
+int emufs_tipo2_get_regsize(EMUFS *, EMUFS_OFFSET n_RegPos,EMUFS_REG_SIZE *);
+int emufs_tipo2_dummyfill(EMUFS *, EMUFS_OFFSET n_RegPos,EMUFS_REG_SIZE n_Amount);
 
 #endif /* _EMUFS_TIPO2_H_ */