X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/8637995cdbd1c7d71825cc2e5e8d874de10135f6..a666806d9361a2876a07941b8d2bb5c973e1557e:/emufs/emufs.h diff --git a/emufs/emufs.h b/emufs/emufs.h index ad28d70..f9f7b85 100644 --- a/emufs/emufs.h +++ b/emufs/emufs.h @@ -117,8 +117,8 @@ struct _emu_fs_t { void* (*leer_registro)(struct _emu_fs_t*, CLAVE, EMUFS_REG_SIZE*, int*); /**< Método para leer un registro */ void* (*leer_registro_raw)(struct _emu_fs_t*, EMUFS_REG_ID, EMUFS_REG_SIZE*, int *); /**< Método para leer un registro con todo su bloque asociado */ 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*, CLAVE k, void*, EMUFS_REG_SIZE, int*); /**< Método para modificar un registro */ - int (*borrar_registro)(struct _emu_fs_t*, CLAVE); /**< Método para borrar un registro */ + EMUFS_REG_ID (*modificar_registro)(struct _emu_fs_t*, CLAVE k, void*, EMUFS_REG_SIZE, int*, INDICE_DATO); /**< Método para modificar un registro */ + int (*borrar_registro)(struct _emu_fs_t*, CLAVE, INDICE_DATO); /**< Método para borrar un registro */ EMUFS_Estadisticas (*leer_estadisticas)(struct _emu_fs_t *); /**< Método para obtener estádisticas sobre el archivo */ void (*compactar)(struct _emu_fs_t *); /**< Método para compactar el archivo reorganizándolo físicamente */ char *nombre; /**< Nombre del archivo */ @@ -177,6 +177,8 @@ int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDIC INDICE_DATO *emufs_buscar_registros(EMUFS *emu, char *indice, char *data, int *cant); +INDICE *emufs_buscar_indice_por_nombre(EMUFS *emu, const char *nombre); + EMUFS_BLOCK_ID emufs_create_new_block(EMUFS *emu); EMUFS_BLOCK_ID emufs_get_new_block_number(EMUFS *emu);