]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - tipo3/emufs.h
un change mas en la extension
[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)(struct _emu_fs_t *, 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, char tipo, unsigned int tam_bloque, unsigned int tam_reg);
20 EMUFS *emufs_abrir(const char *filename);
21
22 int emufs_destruir(EMUFS *e);
23
24 int ver_archivo_FS(EMUFS *emu);
25 #endif