X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/d62c8c3816a5ff0a369982444f16b2c4b059da78..9fd7fdefa9de8b8932cd4c3951792f80ba91b676:/tipo3/interface.h diff --git a/tipo3/interface.h b/tipo3/interface.h index dd33b78..0484420 100644 --- a/tipo3/interface.h +++ b/tipo3/interface.h @@ -4,9 +4,9 @@ typedef struct _emu_fs_t { enum { T1, T2, T3 } tipo; /* Corregir nombres */ unsigned long tam_bloque; /* 0 si no tiene bloques */ - int (*leer_bloque)(int ID, void *, unsigned long tam); - int (*leer_registro)(int ID, void *, unsigned long tam); - int (*grabar_registro)(int ID, void *, unsigned long tam); + int (*leer_bloque)(struct _emu_fs_t *, int, void *); + int (*leer_registro)(struct _emu_fs_t *, int, void *, unsigned long); + int (*grabar_registro)(int , void *, unsigned long ); char *nombre; } EMUFS;