225
|
1 /*
|
|
2 * This program is free software; you can redistribute it and/or modify
|
|
3 * it under the terms of the GNU General Public License as published by
|
|
4 * the Free Software Foundation; either version 2 of the License, or
|
|
5 * (at your option) any later version.
|
|
6 *
|
|
7 * This program is distributed in the hope that it will be useful,
|
|
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
10 * GNU General Public License for more details.
|
|
11 *
|
|
12 * You should have received a copy of the GNU General Public License
|
|
13 * along with this program; if not, write to the Free Software
|
|
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
15 *
|
|
16 * $Id$
|
|
17 *
|
|
18 */
|
|
19
|
|
20 #ifndef IFO_PRINT_H_INCLUDED
|
|
21 #define IFO_PRINT_H_INCLUDED
|
|
22
|
|
23 #include <inttypes.h>
|
|
24 #ifdef DVDNAV_COMPILE
|
|
25 # include "ifo_types.h"
|
|
26 #else
|
|
27 # include <dvdnav/ifo_types.h> /* Only for vm_cmd_t */
|
|
28 #endif
|
|
29
|
|
30 void ifo_print(dvd_reader_t *dvd, int title);
|
|
31
|
|
32 #endif /* IFO_PRINT_H_INCLUDED */
|
|
33
|
|
34 /*
|
|
35 * $Log$
|
|
36 * Revision 1.1 2004/01/11 21:43:13 mroi
|
|
37 * big build system changes
|
|
38 * * cleaned up all Makefiles and added a Makefile.common
|
|
39 * * added relchk script
|
|
40 * * moved libdvdread files to a dvdread subdir
|
|
41 * * moved DVD VM to a vm subdir
|
|
42 * * removed unused code in read_cache.c
|
|
43 *
|
|
44 * Revision 1.4 2004/01/01 15:13:13 jcdutton
|
|
45 * Put ifo_print.c and .h back in.
|
|
46 *
|
|
47 * Revision 1.2 2003/04/28 15:17:17 jcdutton
|
|
48 * Update ifodump to work with new libdvdnav cvs, instead of needing libdvdread.
|
|
49 *
|
|
50 * Revision 1.1.1.1 2002/08/28 09:48:35 jcdutton
|
|
51 * Initial import into CVS.
|
|
52 *
|
|
53 *
|
|
54 *
|
|
55 */
|
|
56
|