New API function to inquire burn success (and avoid confusing messages)

This commit is contained in:
2006-12-23 14:12:55 +00:00
parent 750b897ef0
commit 1ce6ec4a3a
5 changed files with 47 additions and 19 deletions

View File

@ -1281,3 +1281,9 @@ int burn_disc_get_profile(struct burn_drive *d, int *pno, char name[80])
}
/* ts A61223 : New API function */
int burn_drive_wrote_well(struct burn_drive *d)
{
return !d->cancel;
}