- /* me paro en el que tengo que borrar */
- actual = fseek(f_idx, -sizeof(EMUFS_IDX), SEEK_CUR);
- /*actual = ftell(f_idx);*/ /* Guardo la posicion actual */
- fseek(f_idx, 0, SEEK_END); /* me voy al final */
- final = ftell(f_idx); /* veo cuando ocupa el archivo */
- fseek(f_idx, actual, SEEK_SET); /* vuelvo al lugar desde donde quiero justificar */
- /*calculo cuantos registros tengo que mover */
- cant = (final-actual)/sizeof(EMUFS_IDX);
- buffer = (EMUFS_IDX*)malloc((cant)*sizeof(EMUFS_IDX));
- printf("sizeof buffer = %d\n",(cant-1)*sizeof(EMUFS_IDX));
- /*apunto al siguiente del que quiero borrar*/
- final = actual + sizeof(EMUFS_IDX);
- /*leo todos los que quedan*/
- fseek(f_idx,final,SEEK_SET);
- while ( fread(buffer,sizeof(EMUFS_IDX),cant-1,f_idx) ;
- for( i=0; i<cant; i += sizeof(unsigned long int))
- printf("buffer[%d] = %d %d\n",i/sizeof(unsigned long int),*(buffer+i),*(buffer+2*i));
- /*apunto al lugar donde deben ser guardados*/
- fseek(f_idx,actual,SEEK_SET);
- /*los guardo*/
- fwrite(buffer,sizeof(EMUFS_IDX),cant-1,f_idx);
- free(buffer);
-
- fseek (f_idx,0,SEEK_END);
- tam = ftell(f_idx);
- ftruncate(f_idx, tam - sizeof(EMUFS_IDX));
+ strcpy(name_f_idx,emu->nombre);
+ strcat(name_f_idx, EMUFS_IDX_EXT);
+
+ if ( (f_idx = fopen(name_f_idx, "rb")) == NULL){
+ PERR("No se pudo abrir el archivo");
+ return -1;
+ }
+
+ if (fseek(f_idx, sizeof(EMUFS_IDX)*ID, SEEK_SET) == 0) {
+ fread(®, sizeof(EMUFS_IDX), 1, f_idx);
+ if (reg.location != EMUFS_NOT_FOUND) {
+ fclose(f_idx);
+ return 0;
+ }
+ }