#define EMUFS_IDX_EXT ".idx"
typedef struct emufs_idx_t {
- unsigned long int id_reg;
- unsigned long int 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);
-unsigned int emufs_idx_get_count(EMUFS *);
+EMUFS_REG_ID emufs_idx_get_count(EMUFS *);
-unsigned long emufs_idx_get_id_at(EMUFS *, unsigned int pos);
+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 */