-typedef struct block_free_t {
- int block;
- int free_space;
-} BLOCK_FREE_T;
-
-typedef struct block_reg_t {
- int block;
- long int id_reg;
-} BLOCK_REG_T;
-
-int leer_registro(EMUFS *, int , void *, unsigned long);
-
-int leer_bloque(EMUFS *, int , void *);
-
-int grabar_registro(EMUFS *, void *, unsigned long );
+/** Lee el registro \param id_reg y lo almacena en \param ptr */
+void* emufs_tipo3_leer_registro(EMUFS*, EMUFS_REG_ID, int*);