Documented new API call

This commit is contained in:
Thomas Schmitt 2011-12-15 16:14:12 +00:00
parent 8e8ed3e682
commit e15e949a20
2 changed files with 15 additions and 2 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2011.12.15.155642"
#define Cdrskin_timestamP "2011.12.15.161349"

View File

@ -2086,7 +2086,20 @@ int burn_session_get_cdtext(struct burn_session *s, int block,
/* ts B11215 */
/** >>>
/** Read a Sony CD-TEXT Input Sheet Version 0.7T file and attach its text
attributes to the given session and its tracks for the given CD-TEXT
block number. This overrides previous settings made by
burn_session_set_cdtext() and burn_track_set_cdtext(). It can later be
overridden by said function calls.
The format of a v07t sheet file is documented in doc/cdtext.txt.
@param s Session where to attach CD-TEXT attributes
@param path Local filesystem address of the sheet file which
shall be read and interpreted.
@param block Number of the language block in which the attributes
shall appear. Possible values: 0 to 7.
@param flag Bitfield for control purposes. Unused yet. Submit 0.
@return > 0 indicates success , <= 0 is failure
@since 1.2.0
*/
int burn_session_input_sheet_v07t(struct burn_session *session,
char *path, int block, int flag);