]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/idx.h
- Changed routine: emufs_idx_agregar, cambiando el orden de los parametros 2 y 3...
[z.facultad/75.06/emufs.git] / emufs / idx.h
index 2ccef85f0358e6c7a523eed2742429a541add095..7e7cff9d016e11db4659a4d84801d30056fb5ec8 100644 (file)
@@ -20,6 +20,7 @@
  *----------------------------------------------------------------------------
  * Creado:  jue abr  8 18:11:46 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *          Leandro Lucarella <llucare@fi.uba.ar>
  *----------------------------------------------------------------------------
  *
  * $Id$
 #define _EMUFS_IDX_H
 
 #include <string.h>
+#include <unistd.h>
 #include "emufs.h"
 
-int emufs_idx_buscar_mayor_id(EMUFS *);
+#define EMUFS_IDX_EXT ".idx"
 
-int emufs_idx_buscar_registro(EMUFS *, int);
+typedef struct emufs_idx_t {
+       unsigned long int n_IdReg;
+       unsigned long int n_Location;
+} EMUFS_IDX;
 
-int emufs_idx_agregar(EMUFS *, int , int);
+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 */