|
|
|
@ -367,6 +367,9 @@ int isoburn_drive_scan_and_grab(struct burn_drive_info *drive_infos[],
|
|
|
|
|
(depending on media type and drive this might
|
|
|
|
|
help or it might make the resulting toc even worse)
|
|
|
|
|
bit4= do not emulate table of content on overwriteable media
|
|
|
|
|
bit5= ignore ACL from external filesystems
|
|
|
|
|
bit6= ignore POSIX Extended Attributes from external
|
|
|
|
|
filesystems
|
|
|
|
|
@return 1 = success , 0 = drive not found , <0 = other error
|
|
|
|
|
*/
|
|
|
|
|
int isoburn_drive_aquire(struct burn_drive_info *drive_infos[],
|
|
|
|
@ -682,9 +685,11 @@ int isoburn_ropt_destroy(struct isoburn_read_opts **o, int flag);
|
|
|
|
|
tree is used. If you prefer using Joliet, set this to 1.
|
|
|
|
|
bit4= pretend_blank
|
|
|
|
|
Always create empty image.Ignore any image on input drive.
|
|
|
|
|
bit5= noaaip
|
|
|
|
|
bit5= noacl
|
|
|
|
|
@since 0.3.4
|
|
|
|
|
Do not read AAIP informations for ACL and POSIX Extended
|
|
|
|
|
No need to read AAIP informations for ACL
|
|
|
|
|
bit6= noea
|
|
|
|
|
No need to read AAIP informations for POSIX Extended
|
|
|
|
|
Attributes.
|
|
|
|
|
@return 1 success, <=0 failure
|
|
|
|
|
*/
|
|
|
|
@ -693,7 +698,8 @@ int isoburn_ropt_destroy(struct isoburn_read_opts **o, int flag);
|
|
|
|
|
#define isoburn_ropt_noiso1999 4
|
|
|
|
|
#define isoburn_ropt_preferjoliet 8
|
|
|
|
|
#define isoburn_ropt_pretend_blank 16
|
|
|
|
|
#define isoburn_ropt_noaaip 32
|
|
|
|
|
#define isoburn_ropt_noacl 32
|
|
|
|
|
#define isoburn_ropt_noea 64
|
|
|
|
|
|
|
|
|
|
int isoburn_ropt_set_extensions(struct isoburn_read_opts *o, int ext);
|
|
|
|
|
int isoburn_ropt_get_extensions(struct isoburn_read_opts *o, int *ext);
|
|
|
|
|