]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - tipo3/interface.h
* INPUT ahora tiene valor por defecto
[z.facultad/75.06/emufs.git] / tipo3 / interface.h
1 #ifndef _INTERFACE_H_
2 #define _INTERFACE_H_
3
4 typedef struct _emu_fs_t {
5     enum { T1, T2, T3 } tipo; /* Corregir nombres */
6     unsigned long tam_bloque; /* 0 si no tiene bloques */
7     int (*leer_bloque)(int ID, void *, unsigned long tam);
8     int (*leer_registro)(int ID, void *, unsigned long tam);
9     int (*grabar_registro)(int ID, void *, unsigned long tam);
10     char *nombre;
11 } EMUFS;
12
13
14
15 #endif