]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - tipo3/emufs.h
Pulenteo Makefile para que haga chequeo de ANSI C y clean.
[z.facultad/75.06/emufs.git] / tipo3 / emufs.h
index 4314f6d6c6dbdbb2d98b7db46dc2f3d08cd8896d..3772127a50c10bbe9c8d88263a2205341f51561d 100644 (file)
@@ -7,16 +7,19 @@
 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 );
+       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;
+       char *nombre;
 } 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);
+EMUFS *emufs_abrir(const char *filename);
 
+int emufs_destruir(EMUFS *e);
 
+int ver_archivo_FS(EMUFS *emu);
 #endif