]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/idx.h
* BUGFIX : habia 2 parametros mal al llamar a IDX_AGREGAR en tipo3 grabar_bloque
[z.facultad/75.06/emufs.git] / emufs / idx.h
index 5e346327d9706bcbf5c96a475a86b8ac131e14e0..510e78c8db3f80f480604da8421b66731e9a2d1e 100644 (file)
@@ -20,6 +20,7 @@
  *----------------------------------------------------------------------------
  * Creado:  jue abr  8 18:11:46 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
  *----------------------------------------------------------------------------
  * Creado:  jue abr  8 18:11:46 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *          Leandro Lucarella <llucare@fi.uba.ar>
  *----------------------------------------------------------------------------
  *
  * $Id$
  *----------------------------------------------------------------------------
  *
  * $Id$
  *
  */
 
  *
  */
 
-#ifndef _IDX_H
-#define _IDX_H
+#ifndef _EMUFS_IDX_H
+#define _EMUFS_IDX_H
 
 #include <string.h>
 
 #include <string.h>
+#include <unistd.h>
 #include "emufs.h"
 
 #include "emufs.h"
 
-int emufs_idx_buscar_mayor_id(EMUFS *);
+#define EMUFS_IDX_EXT ".idx"
 
 
-#endif /* _IDX_H */
+typedef struct emufs_idx_t {
+       unsigned long int n_idreg;
+       unsigned long int n_location;
+} EMUFS_IDX;
+
+FILE* emufs_idx_abrir(EMUFS*, const char*);
+int emufs_idx_crear(EMUFS*);
+EMUFS_REG_ID emufs_idx_buscar_mayor_id(EMUFS *);
+EMUFS_BLOCK_ID emufs_idx_buscar_registro(EMUFS *, EMUFS_REG_ID);
+int emufs_idx_agregar(EMUFS *, EMUFS_BLOCK_ID, EMUFS_REG_ID);
+int emufs_idx_borrar(EMUFS *emu, EMUFS_REG_ID);
+
+#endif /* _EMUFS_IDX_H */