|
|
|
@ -1532,7 +1532,7 @@ int isoburn_igopt_get_scdbackup_tag(struct isoburn_imgen_opts *o,
|
|
|
|
|
numbers 2 to 8.
|
|
|
|
|
This will overwrite the first 512 bytes of
|
|
|
|
|
the submitted data.
|
|
|
|
|
@since 1.3.6
|
|
|
|
|
@since 1.3.8
|
|
|
|
|
4= HP-PA PALO boot sector header version 4
|
|
|
|
|
Submit all five parameters of
|
|
|
|
|
iso_image_set_hppa_palo() as non-NULL texts.
|
|
|
|
@ -1899,6 +1899,30 @@ int isoburn_igopt_get_hfsp_block_size(struct isoburn_imgen_opts *opts,
|
|
|
|
|
int isoburn_igopt_set_write_type(struct isoburn_imgen_opts *opts, int do_tao);
|
|
|
|
|
int isoburn_igopt_get_write_type(struct isoburn_imgen_opts *opts, int *do_tao);
|
|
|
|
|
|
|
|
|
|
/** Set or inquire whether a final fsync(2) is performed when updating the
|
|
|
|
|
multi-session information of libburn stdio pseudo-drives by
|
|
|
|
|
isoburn_activate_session().
|
|
|
|
|
Note:
|
|
|
|
|
fsync(2) calls during and at the end of isoburn_disc_write() are controlled
|
|
|
|
|
by libburn call burn_write_opts_set_stdio_fsync().
|
|
|
|
|
@since 1.2.4
|
|
|
|
|
@param opts
|
|
|
|
|
The option set to be manipulated or inquired.
|
|
|
|
|
@parm do_sync
|
|
|
|
|
1= call fsync(2) with stdio drives in isoburn_activate_session()
|
|
|
|
|
0= do not
|
|
|
|
|
@return
|
|
|
|
|
<=0 = error, 1 = success
|
|
|
|
|
*/
|
|
|
|
|
int isoburn_igopt_set_stdio_endsync(struct isoburn_imgen_opts *opts,
|
|
|
|
|
int do_sync);
|
|
|
|
|
int isoburn_igopt_get_stdio_endsync(struct isoburn_imgen_opts *opts,
|
|
|
|
|
int *do_sync);
|
|
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------- */
|
|
|
|
|
/* End of Options for image generation */
|
|
|
|
|
/* ----------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Frontend of libisofs call iso_conv_name_chars() controlled by
|
|
|
|
|
struct isoburn_imgen_opts rather than IsoWriteOpts.
|
|
|
|
@ -1940,11 +1964,6 @@ int isoburn_conv_name_chars(struct isoburn_imgen_opts *opts,
|
|
|
|
|
char **result, size_t *result_len, int flag);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------- */
|
|
|
|
|
/* End of Options for image generation */
|
|
|
|
|
/* ----------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Get the image attached to a drive, if any.
|
|
|
|
|
@since 0.1.0
|
|
|
|
|
@param d The drive to inquire
|
|
|
|
|