X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/a7a781b6b1a260c882ad779a9ecdaa517d1a6846..a4236f038178839da58930dbecd0f3b45637e448:/emufs/did.h diff --git a/emufs/did.h b/emufs/did.h index b50d630..40e8009 100644 --- a/emufs/did.h +++ b/emufs/did.h @@ -20,6 +20,7 @@ *---------------------------------------------------------------------------- * Creado: jue abr 8 18:09:31 ART 2004 * Autores: Nicolás Dimov + * Leandro Lucarella *---------------------------------------------------------------------------- * * $Id$ @@ -39,11 +40,18 @@ #define _EMUFS_DID_H_ #include "emufs.h" - #define EMUFS_DID_EXT ".did" -int emufs_did_get_last(EMUFS *); +/** Crea un archivo de ID's Liberados. */ +int emufs_did_crear(EMUFS*); + +/** Agrega un registro al archivo de ID's Libres (pila) */ +int emufs_did_agregar(EMUFS *, EMUFS_REG_ID); + +/** Devuelve el ID Libre, liberado mas recientemente (pila) */ +EMUFS_REG_ID emufs_did_get_last(EMUFS*, int*); -int emufs_did_agregar(EMUFS *, int); +/** Obtiene el tamaño del archivo de identificadores liberados. */ +long emufs_did_get_file_size(EMUFS*, int*); #endif /* _EMUFS_DID_H */