New API call iso_write_opts_set_fat(). (FAT feature not implemented yet.)

This commit is contained in:
2012-06-10 19:41:00 +02:00
parent 7c6c3466e9
commit 1de0284eaa
4 changed files with 36 additions and 3 deletions

View File

@@ -1427,6 +1427,24 @@ int iso_write_opts_set_joliet(IsoWriteOpts *opts, int enable);
*/
int iso_write_opts_set_hfsplus(IsoWriteOpts *opts, int enable);
/**
* Whether to add a FAT32 filesystem to the image which points to the same
* file content as the other directory trees.
*
* >>> FAT32 is planned to get implemented in co-existence with HFS+
* >>> Describe impact on MBR
*
* @param opts
* The option set to be manipulated.
* @param enable
* 1 to enable FAT32 extension, 0 to not add FAT metadata
* @return
* 1 success, < 0 error
*
* @since 1.2.4
*/
int iso_write_opts_set_fat(IsoWriteOpts *opts, int enable);
/**
* Supply a serial number for the HFS+ extension of the emerging image.
*