]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
Ups, faltaban cosas
authorRicardo Markiewicz <gazer.arg@gmail.com>
Mon, 12 Apr 2004 03:00:42 +0000 (03:00 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Mon, 12 Apr 2004 03:00:42 +0000 (03:00 +0000)
emufs/emufs.c
emufs/emufs.h

index 0c55064550722b1e474eff4f8efbe55bc3970265..9956bf6b0e4e7e3bb33569a6340cacb3f1783a48 100644 (file)
@@ -79,7 +79,7 @@ int emufs_crear_archivo_auxiliar(const char* name, const char* ext)
        return 0;
 }
 
        return 0;
 }
 
-EMUFS *emufs_crear(const char *filename, EMUFS_TYPE tipo, EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg)
+EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo, EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg)
 {
        char name[255];
        FILE *fp;
 {
        char name[255];
        FILE *fp;
@@ -112,7 +112,7 @@ EMUFS *emufs_crear(const char *filename, EMUFS_TYPE tipo, EMUFS_BLOCK_SIZE tam_b
        }
 
        /* Guarda cabecera común. */
        }
 
        /* Guarda cabecera común. */
-       fwrite(&tipo, sizeof(EMUFS_TYPE), 1, fp);
+       fwrite(&tipo, sizeof(EMUFS_Tipo), 1, fp);
 
        /* Crea archivo de índice. */
        if (emufs_idx_crear(efs)) {
 
        /* Crea archivo de índice. */
        if (emufs_idx_crear(efs)) {
@@ -186,7 +186,7 @@ EMUFS *emufs_abrir(const char *filename)
        /* Trato de determinar el tipo de archivo */
        fp = fopen(name, "r");
        if (fp == NULL) return NULL;
        /* Trato de determinar el tipo de archivo */
        fp = fopen(name, "r");
        if (fp == NULL) return NULL;
-       fread(&tipo, sizeof(EMUFS_TYPE), 1, fp);
+       fread(&tipo, sizeof(EMUFS_Tipo), 1, fp);
 
        /* Si no es un tipo conocido, sale. */
        if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
 
        /* Si no es un tipo conocido, sale. */
        if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
index f38bbc7ceba358ba0008adf1611046f86d7d310b..fb7dbcdc268c7d728cb3a24011b0d04923e8b633 100644 (file)
@@ -145,7 +145,7 @@ int emufs_crear_archivo_auxiliar(const char*, const char*);
  *  \param tam_bloque Tamaño del bloque.
  *  \param tam_reg Tamaño del registro.
  */
  *  \param tam_bloque Tamaño del bloque.
  *  \param tam_reg Tamaño del registro.
  */
-EMUFS *emufs_crear(const char *filename, EMUFS_TYPE tipo,EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg);
+EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo,EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg);
 
 /** Abre un archivo EMUFS.
  *
 
 /** Abre un archivo EMUFS.
  *