Added parameter to new API calls isoburn_cancel_prepared_write, isoburn_sync_after_write
This commit is contained in:
@ -695,11 +695,14 @@ int isoburn_prepare_new_image(struct burn_drive *in_drive,
|
||||
call described here.
|
||||
@param input_drive The drive resp. in_drive which was used with the
|
||||
preparation call.
|
||||
@param output_drive The out_drive used with isoburn_prepare_new_image(),
|
||||
NULL if none.
|
||||
@param flag Bitfield, submit 0 for now.
|
||||
bit0= -reserved for internal use-
|
||||
@return <0 error, 0= no pending preparations detectable, 1 = canceled
|
||||
*/
|
||||
int isoburn_cancel_prepared_write(struct burn_drive *input_drive, int flag);
|
||||
int isoburn_cancel_prepared_write(struct burn_drive *input_drive,
|
||||
struct burn_drive *output_drive, int flag);
|
||||
|
||||
|
||||
/** Start writing of the new session.
|
||||
@ -759,10 +762,13 @@ int isoburn_activate_session(struct burn_drive *drive);
|
||||
threads might appear after the application ended its write procedure.
|
||||
@param input_drive The drive resp. in_drive which was used with the
|
||||
preparation call.
|
||||
@param output_drive The out_drive used with isoburn_prepare_new_image(),
|
||||
NULL if none.
|
||||
@param flag Bitfield, submit 0 for now.
|
||||
@return <=0 error , 1 = success
|
||||
*/
|
||||
int isoburn_sync_after_write(struct burn_drive *input_drive, int flag);
|
||||
int isoburn_sync_after_write(struct burn_drive *input_drive,
|
||||
struct burn_drive *output_drive, int flag);
|
||||
|
||||
|
||||
#if 0
|
||||
|
Reference in New Issue
Block a user