]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* Se agregan 2 nuevas funciones y un nuevo tipo de dato (a completar)
authorRicardo Markiewicz <gazer.arg@gmail.com>
Mon, 12 Apr 2004 02:46:50 +0000 (02:46 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Mon, 12 Apr 2004 02:46:50 +0000 (02:46 +0000)
emufs/emufs.h

index 885c720504aee5b2225990d852accb8841db68c3..2469d3b17c2ef389d82a5e9a3d19d5ab0c7011ac 100644 (file)
@@ -81,6 +81,11 @@ typedef unsigned long EMUFS_OFFSET;
  */
 #define EMUFS_NOT_FOUND -1ul
 
  */
 #define EMUFS_NOT_FOUND -1ul
 
+/** Estadisticas de archivo */
+typedef struct _emufs_est_t {
+       unsigned long tam_archivo;
+} EMUFS_Estadistidas;
+
 /** Tipo Abstracto para menajo de archivos.
  *
  *  Esta estructura es utilizada para acceder a cualquier tipo de archivo.
 /** Tipo Abstracto para menajo de archivos.
  *
  *  Esta estructura es utilizada para acceder a cualquier tipo de archivo.
@@ -106,7 +111,9 @@ typedef struct _emu_fs_t {
        void* (*leer_bloque)(struct _emu_fs_t*, EMUFS_BLOCK_ID, int*); /**< Método para leer un bloque */
        void* (*leer_registro)(struct _emu_fs_t*, EMUFS_REG_ID, EMUFS_REG_SIZE*, int*); /**< Método para leer un registro */
        EMUFS_REG_ID (*grabar_registro)(struct _emu_fs_t*, void*, EMUFS_REG_SIZE, int*); /**< Método para grabar un registro */
        void* (*leer_bloque)(struct _emu_fs_t*, EMUFS_BLOCK_ID, int*); /**< Método para leer un bloque */
        void* (*leer_registro)(struct _emu_fs_t*, EMUFS_REG_ID, EMUFS_REG_SIZE*, int*); /**< Método para leer un registro */
        EMUFS_REG_ID (*grabar_registro)(struct _emu_fs_t*, void*, EMUFS_REG_SIZE, int*); /**< Método para grabar un registro */
+       EMUFS_REG_ID (*modificar_registro)(struct _emu_fs_t*, EMUFS_REG_ID, void*, EMUFS_REG_SIZE, int*); /**< Método para modificar un registro */
        int (*borrar_registro)(struct _emu_fs_t*, EMUFS_REG_ID); /**< Método para borrar un registro */
        int (*borrar_registro)(struct _emu_fs_t*, EMUFS_REG_ID); /**< Método para borrar un registro */
+       EMUFS_Estadistidas (*leer_estadisticas)(struct _emu_fs_t *);
        char *nombre; /**< Nombre del archivo */
 } EMUFS;
 
        char *nombre; /**< Nombre del archivo */
 } EMUFS;