]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/idx.h
* BUGFIXES en tipo3 :
[z.facultad/75.06/emufs.git] / emufs / idx.h
index 7e7cff9d016e11db4659a4d84801d30056fb5ec8..c6a927515505d9cc92992546f7c2912d63d0cb69 100644 (file)
 #define EMUFS_IDX_EXT ".idx"
 
 typedef struct emufs_idx_t {
 #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*);
 } EMUFS_IDX;
 
 FILE* emufs_idx_abrir(EMUFS*, const char*);
+
 int emufs_idx_crear(EMUFS*);
 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);
+
+EMUFS_REG_ID emufs_idx_buscar_mayor_id_libre(EMUFS*, int*);
+
+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*, EMUFS_REG_ID);
+
+/** Retorna un array con los Ids validos del archivo IDX
+ *
+ *  EL ARRAY DEBE SER LIBERADO!
+ *  \param emu EMUFS
+ *  \param cant Puntero donde guardar la cantidad de items
+ */
+EMUFS_REG_ID *emufs_idx_get(EMUFS *emu, EMUFS_REG_ID *cant);
+
+EMUFS_REG_ID emufs_idx_get_new_id(EMUFS*, int*);
+
+int emufs_idx_existe_id(EMUFS *emu, int ID);
 
 #endif /* _EMUFS_IDX_H */
 
 #endif /* _EMUFS_IDX_H */