]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - tipo3/emufs.h
Se actualizan los archivos indice, falta implementar boorar_registro
[z.facultad/75.06/emufs.git] / tipo3 / emufs.h
1 #ifndef _EMUFS_H_
2 #define _EMUFS_H_
3
4 #include <stdlib.h>
5 #include <stdio.h>
6
7 typedef enum {T1, T2, T3} EMUFS_TYPE;
8
9 typedef struct _emu_fs_t {
10     EMUFS_TYPE tipo; /* Corregir nombres */
11     unsigned long tam_bloque; /* 0 si no tiene bloques */
12     int (*leer_bloque)(struct _emu_fs_t *, int, void *);
13     int (*leer_registro)(struct _emu_fs_t *, int, void *, unsigned long);
14     int (*grabar_registro)(int , void *, unsigned long );
15         int (*borrar_registro)(struct _emu_fs_t *, int);
16     char *nombre;
17 } EMUFS;
18
19 EMUFS *emufs_crear(const char *filename, int tipo);
20
21
22 #endif