10l: comparison of char* ptrs with string literals
[mplayer.git] / dvdread / ifo_print.h
blob7a4169c0b679be96474fe1298a356c5054f0b68d
1 #ifndef IFO_PRINT_H_INCLUDED
2 #define IFO_PRINT_H_INCLUDED
4 /*
5 * Copyright (C) 2000, 2001 Björn Englund <d4bjorn@dtek.chalmers.se>,
6 * Håkan Hjort <d95hjort@dtek.chalmers.se>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <dvdread/ifo_types.h>
24 #include <dvdread/dvd_reader.h>
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
30 /**
31 * This file provides example functions for printing information about the IFO
32 * file to stdout.
35 /**
36 * Print the complete parsing information for the given file.
39 /* ifoPrint(dvd, title); */
40 void ifoPrint(dvd_reader_t *, int);
42 void ifoPrint_VMGI_MAT(vmgi_mat_t *);
43 void ifoPrint_VTSI_MAT(vtsi_mat_t *);
45 void ifoPrint_PTL_MAIT(ptl_mait_t *);
46 void ifoPrint_VTS_ATRT(vts_atrt_t *);
47 void ifoPrint_TT_SRPT(tt_srpt_t *);
48 void ifoPrint_VTS_PTT_SRPT(vts_ptt_srpt_t *);
49 void ifoPrint_PGC(pgc_t *);
50 void ifoPrint_PGCIT(pgcit_t *);
51 void ifoPrint_PGCI_UT(pgci_ut_t *);
52 void ifoPrint_VTS_TMAPT(vts_tmapt_t *);
53 void ifoPrint_C_ADT(c_adt_t *);
54 void ifoPrint_VOBU_ADMAP(vobu_admap_t *);
56 #ifdef __cplusplus
58 #endif
59 #endif /* IFO_PRINT_H_INCLUDED */