X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/6c5fe1e15e441c27ba01b22b91bf1e5843ae53f2..6cccba0f7cfbdef2ca2af0bba1252e6ddde17dde:/emufs/did.h?ds=sidebyside diff --git a/emufs/did.h b/emufs/did.h index 94770dd..7504241 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,9 +40,13 @@ #define _EMUFS_DID_H_ #include "emufs.h" +#define EMUFS_DID_EXT ".did" -int emufs_did_get_last(EMUFS *); - -int emufs_did_agregar(EMUFS *, int); +/* 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*); #endif /* _EMUFS_DID_H */