1 /* @(#)dvd_file.h	1.1 02/07/21 Copyright 2002 J. Schilling */
2 /*
3  *	Defnitions for users of dvd_file.c
4  *
5  *	Copyright (c) 2002 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20  */
21 
22 #ifndef	_DVD_FILE_H
23 #define	_DVD_FILE_H
24 
25 extern	void		DVDFreeFileSet		__PR((title_set_info_t * title_set_info));
26 extern	title_set_info_t *DVDGetFileSet		__PR((char * dvd));
27 extern	int		DVDGetFilePad		__PR((title_set_info_t * title_set_info, char * name));
28 
29 #endif	/* _DVD_FILE_H */
30