]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/idx.h
* BUGFIX: en tipo1 grabar_registro cuando se pregunta por espacio libre no se esta...
[z.facultad/75.06/emufs.git] / emufs / idx.h
index 4dfba88acd068c8fa193c1445590c4f624cc3be6..40bf53972a93c418dba454e7d8bdd9e516b33151 100644 (file)
 #define EMUFS_IDX_EXT ".idx"
 
 typedef struct emufs_idx_t {
-       int block;
-       long int id_reg;
+       unsigned long int n_idreg;
+       unsigned long int n_location;
 } EMUFS_IDX;
 
 FILE* emufs_idx_abrir(EMUFS*, const char*);
 
 int emufs_idx_crear(EMUFS*);
 
-int emufs_idx_buscar_mayor_id(EMUFS *);
+EMUFS_REG_ID emufs_idx_buscar_mayor_id_libre(EMUFS*, int*);
 
-int emufs_idx_buscar_registro(EMUFS *, int);
+EMUFS_BLOCK_ID emufs_idx_buscar_registro(EMUFS*, EMUFS_REG_ID);
 
-int emufs_idx_agregar(EMUFS *, int , int);
+int emufs_idx_agregar(EMUFS*, EMUFS_BLOCK_ID, EMUFS_REG_ID);
 
-int emufs_idx_borrar(EMUFS *emu, int ID);
+int emufs_idx_borrar(EMUFS*, EMUFS_REG_ID);
+
+EMUFS_REG_ID emufs_idx_get_new_id(EMUFS*, int*);
 
 #endif /* _EMUFS_IDX_H */