-EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error)
-{
- emufs_tipo1_borrar_registro(emu, id);
- return emufs_tipo1_grabar_registro(emu, data, size, error);
-}
-
-void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE *size, int *pos)
-{
- char* block; /* bloque leido (en donde está el registro a leer) */
- EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
- EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
- EMUFS_BLOCK_SIZE block_size; /* tamaño del bloque leído */
- EMUFS_REG_SIZE curr_reg_size; /* tamaño del registro leído secuencialmente */
- EMUFS_REG_ID curr_reg_id; /* id del registro leído secuencialmente */
- int err;
-
- block_id = emufs_idx_buscar_registro(efs, id);
- if (block_id == EMUFS_NOT_FOUND) {
- return NULL;
- }
- if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
- return NULL;
- }
-
- /* Busco secuencialmente en el bloque el registro a leer */
- offset = 0;
- do {
- /* Copio el id del registro de la cabecera. */
- memcpy(&curr_reg_id, block + offset, sizeof(EMUFS_REG_ID));
- offset += sizeof(EMUFS_REG_ID);
- /* Copio el tamaño del registro de la cabecera. */
- memcpy(&curr_reg_size, block + offset, sizeof(EMUFS_REG_SIZE));
- offset += sizeof(EMUFS_REG_SIZE);
- if (curr_reg_id == id) {
- *pos = offset-sizeof(EMUFS_REG_ID)-sizeof(EMUFS_REG_SIZE);
- break;
- }
- /* Desplazo el offset */
- offset += curr_reg_size;
- } while (offset < block_size);
-
- (*size) = efs->tam_bloque;
- return block;
-}
-