]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - tipo3/emufs.h
* Le agregue el malloc debugger al tipo3 y ahora no falla. Me hace sospechar que...
[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 #include "malloc_debug.h"
7
8 typedef enum {T1, T2, T3} EMUFS_TYPE;
9
10 typedef struct _emu_fs_t {
11         EMUFS_TYPE tipo; /* Corregir nombres */
12         unsigned long tam_bloque; /* 0 si no tiene bloques */
13         int (*leer_bloque)(struct _emu_fs_t *, int, void *);
14         int (*leer_registro)(struct _emu_fs_t *, int, void *, unsigned long);
15         int (*grabar_registro)(struct _emu_fs_t *, void *, unsigned long );
16         int (*borrar_registro)(struct _emu_fs_t *, int);
17         char *nombre;
18 } EMUFS;
19
20 EMUFS *emufs_crear(const char *filename, char tipo, unsigned int tam_bloque, unsigned int tam_reg);
21
22 int emufs_destruir(EMUFS *e);
23 #endif