|
|
|
@ -101,48 +101,56 @@ iso_volume_get_root(const struct iso_volume *volume)
|
|
|
|
|
void iso_volume_set_volume_id(struct iso_volume *volume,
|
|
|
|
|
const char *volume_id)
|
|
|
|
|
{
|
|
|
|
|
free(volume->volume_id);
|
|
|
|
|
volume->volume_id = strdup(volume_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void iso_volume_set_publisher_id(struct iso_volume *volume,
|
|
|
|
|
const char *publisher_id)
|
|
|
|
|
{
|
|
|
|
|
free(volume->publisher_id);
|
|
|
|
|
volume->publisher_id = strdup(publisher_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void iso_volume_set_data_preparer_id(struct iso_volume *volume,
|
|
|
|
|
const char *data_preparer_id)
|
|
|
|
|
{
|
|
|
|
|
free(volume->data_preparer_id);
|
|
|
|
|
volume->data_preparer_id = strdup(data_preparer_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void iso_volume_set_system_id(struct iso_volume *volume,
|
|
|
|
|
const char *system_id)
|
|
|
|
|
{
|
|
|
|
|
free(volume->system_id);
|
|
|
|
|
volume->system_id = strdup(system_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void iso_volume_set_application_id(struct iso_volume *volume,
|
|
|
|
|
const char *application_id)
|
|
|
|
|
{
|
|
|
|
|
free(volume->application_id);
|
|
|
|
|
volume->application_id = strdup(application_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void iso_volume_set_copyright_file_id(struct iso_volume *volume,
|
|
|
|
|
const char *copyright_file_id)
|
|
|
|
|
{
|
|
|
|
|
free(volume->copyright_file_id);
|
|
|
|
|
volume->copyright_file_id = strdup(copyright_file_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void iso_volume_set_abstract_file_id(struct iso_volume *volume,
|
|
|
|
|
const char *abstract_file_id)
|
|
|
|
|
{
|
|
|
|
|
free(volume->abstract_file_id);
|
|
|
|
|
volume->abstract_file_id = strdup(abstract_file_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void iso_volume_set_biblio_file_id(struct iso_volume *volume,
|
|
|
|
|
const char *biblio_file_id)
|
|
|
|
|
{
|
|
|
|
|
free(volume->biblio_file_id);
|
|
|
|
|
volume->biblio_file_id = strdup(biblio_file_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|