From d72d964935fcfb67aa0be2b123ed60ef03a0d1db Mon Sep 17 00:00:00 2001 From: Ricardo Markiewicz Date: Mon, 12 Apr 2004 02:58:22 +0000 Subject: [PATCH] * Modifico el tipo que estaba mal. * Desquiebro una funcion * Agrego warp a las opciones del vim para aquellos que no les gusta scrollear --- emufs/emufs.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/emufs/emufs.h b/emufs/emufs.h index 883ede4..f38bbc7 100644 --- a/emufs/emufs.h +++ b/emufs/emufs.h @@ -1,4 +1,4 @@ -/* vim: set noexpandtab tabstop=4 shiftwidth=4: +/* vim: set noexpandtab tabstop=4 shiftwidth=4 wrap: *---------------------------------------------------------------------------- * emufs *---------------------------------------------------------------------------- @@ -55,7 +55,7 @@ typedef enum { T1, /**< Archivo de bloque parametrizado y registro variable. */ T2, /**< Archivo sin bloques y registros variables. */ T3 /**< Archivo de bloque parametrizado y registro fijo. */ -} EMUFS_TYPE; +} EMUFS_Tipo; /** Tipo de identificador de registro. */ typedef unsigned long EMUFS_REG_ID; @@ -105,7 +105,7 @@ typedef struct _emufs_est_t { * para llamar al método correspondiente a cada tipo de archivo. */ typedef struct _emu_fs_t { - EMUFS_TYPE tipo; + EMUFS_Tipo tipo; EMUFS_BLOCK_SIZE tam_bloque; /**< Tamaño de bloque. 0 Si no tiene bloques */ EMUFS_REG_SIZE tam_reg; /**< Tamaño de registro. 0 Si son registros variables */ void* (*leer_bloque)(struct _emu_fs_t*, EMUFS_BLOCK_ID, int*); /**< Método para leer un bloque */ @@ -145,8 +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. */ -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_TYPE tipo,EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg); /** Abre un archivo EMUFS. * -- 2.43.0