]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - 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
index ed4d1b898efe088a24aff7ca653ee48a3c531704..cf16da931f52bb98381c1bcfc326a53c04b533b0 100644 (file)
@@ -3,19 +3,21 @@
 
 #include <stdlib.h>
 #include <stdio.h>
 
 #include <stdlib.h>
 #include <stdio.h>
+#include "malloc_debug.h"
 
 typedef enum {T1, T2, T3} EMUFS_TYPE;
 
 typedef struct _emu_fs_t {
 
 typedef enum {T1, T2, T3} EMUFS_TYPE;
 
 typedef struct _emu_fs_t {
-    EMUFS_TYPE tipo; /* Corregir nombres */
-    unsigned long tam_bloque; /* 0 si no tiene bloques */
-    int (*leer_bloque)(struct _emu_fs_t *, int, void *);
-    int (*leer_registro)(struct _emu_fs_t *, int, void *, unsigned long);
-    int (*grabar_registro)(int , void *, unsigned long );
-    char *nombre;
+       EMUFS_TYPE tipo; /* Corregir nombres */
+       unsigned long tam_bloque; /* 0 si no tiene bloques */
+       int (*leer_bloque)(struct _emu_fs_t *, int, void *);
+       int (*leer_registro)(struct _emu_fs_t *, int, void *, unsigned long);
+       int (*grabar_registro)(struct _emu_fs_t *, void *, unsigned long );
+       int (*borrar_registro)(struct _emu_fs_t *, int);
+       char *nombre;
 } EMUFS;
 
 } EMUFS;
 
-EMUFS *emufs_crear(const char *filename, int tipo);
-
+EMUFS *emufs_crear(const char *filename, char tipo, unsigned int tam_bloque, unsigned int tam_reg);
 
 
+int emufs_destruir(EMUFS *e);
 #endif
 #endif