Expanded new API call isoburn_igopt_set_scdbackup_tag

This commit is contained in:
2009-09-17 14:43:54 +00:00
parent 7a1f61afaa
commit 72ac8a4ab1
4 changed files with 22 additions and 6 deletions

View File

@ -1151,12 +1151,18 @@ int isoburn_igopt_get_data_start(struct isoburn_imgen_opts *o, int *lba);
@param name The tag name. 80 characters max.
@param timestamp A string of up to 13 characters YYMMDD.hhmmss
A9 = 2009, B0 = 2010, B1 = 2011, ... C0 = 2020, ...
@param tag_written Either NULL or the address of an array with at least 512
characters. In the latter case the eventually produced
scdbackup tag will be copied to this array when the image
gets written. This call sets scdbackup_tag_written[0] = 0
to mark its preliminary invalidity.
@return 1 success, <=0 failure
*/
int isoburn_igopt_set_scdbackup_tag(struct isoburn_imgen_opts *o, char *name,
char *timestamp);
char *timestamp, char *tag_written);
int isoburn_igopt_get_scdbackup_tag(struct isoburn_imgen_opts *o,
char name[81], char timestamp[19]);
char name[81], char timestamp[19],
char **tag_written);
/* ----------------------------------------------------------------------- */