#define EMUFS_IDX_EXT ".idx"
typedef struct emufs_idx_t {
- unsigned long int n_idreg;
- unsigned long int n_location;
+ EMUFS_REG_ID id_reg;
+ EMUFS_BLOCK_ID location;
} EMUFS_IDX;
FILE* emufs_idx_abrir(EMUFS*, const char*);
int emufs_idx_borrar(EMUFS*, EMUFS_REG_ID);
+EMUFS_REG_ID emufs_idx_get_count(EMUFS *);
+
+EMUFS_REG_ID emufs_idx_get_id_at(EMUFS *, long pos);
+
EMUFS_REG_ID emufs_idx_get_new_id(EMUFS*, int*);
+int emufs_idx_existe_id(EMUFS *emu, int ID);
+
#endif /* _EMUFS_IDX_H */