1 /* @(#)udf.h	1.2 04/03/01 Copyright 2001-2004 J. Schilling */
2 /*
3  *	UDF external definitions for mkisofs
4  *
5  *	Copyright (c) 2001-2004 J. Schilling
6  */
7 /*
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along with
18  * this program; see the file COPYING.  If not, write to the Free Software
19  * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  */
21 
22 #ifndef	_UDF_H
23 #define	_UDF_H
24 
25 extern struct output_fragment udf_vol_recognition_area_frag;
26 extern struct output_fragment udf_main_seq_frag;
27 extern struct output_fragment udf_main_seq_copy_frag;
28 extern struct output_fragment udf_integ_seq_frag;
29 extern struct output_fragment udf_anchor_vol_desc_frag;
30 extern struct output_fragment udf_file_set_desc_frag;
31 extern struct output_fragment udf_dirtree_frag;
32 extern struct output_fragment udf_file_entries_frag;
33 extern struct output_fragment udf_end_anchor_vol_desc_frag;
34 
35 extern struct output_fragment udf_pad_to_sector_32_frag;
36 extern struct output_fragment udf_pad_to_sector_256_frag;
37 extern struct output_fragment udf_padend_avdp_frag;
38 
39 int assign_dvd_weights __PR((char *name, struct directory *this_dir, int val));
40 
41 #endif	/* _UDF_H */
42