*----------------------------------------------------------------------------
* Creado: jue abr 8 18:09:31 ART 2004
* Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ * Leandro Lucarella <llucare@fi.uba.ar>
*----------------------------------------------------------------------------
*
* $Id$
*
*/
-#ifndef _DID_H_
-#define _DID_H_
+#ifndef _EMUFS_DID_H_
+#define _EMUFS_DID_H_
-#include <string.h>
-#include <unistd.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*);
-#endif /* _DID_H */
+/** 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*);
+
+/** Obtiene el tamaño del archivo de identificadores liberados. */
+long emufs_did_get_file_size(EMUFS*, int*);
+
+#endif /* _EMUFS_DID_H */