]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - tipo3/interface.h
* Termino de generar las opciones de Baja y Alta de articulo (ojo que no dan de...
[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)(struct _emu_fs_t *, int, void *);
8     int (*leer_registro)(struct _emu_fs_t *, int, void *, unsigned long);
9     int (*grabar_registro)(int , void *, unsigned long );
10     char *nombre;
11 } EMUFS;
12
13
14
15 #endif