src
dvdread
ifo_read.h
1
/*
2
* Copyright (C) 2000, 2001, 2002 Björn Englund <d4bjorn@dtek.chalmers.se>,
3
* Håkan Hjort <d95hjort@dtek.chalmers.se>
4
*
5
* This file is part of libdvdread.
6
*
7
* libdvdread is free software; you can redistribute it and/or modify
8
* it under the terms of the GNU General Public License as published by
9
* the Free Software Foundation; either version 2 of the License, or
10
* (at your option) any later version.
11
*
12
* libdvdread 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
18
* with libdvdread; if not, write to the Free Software Foundation, Inc.,
19
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
*/
21
22
#ifndef LIBDVDREAD_IFO_READ_H
23
#define LIBDVDREAD_IFO_READ_H
24
25
#include "ifo_types.h"
26
#include "dvdread/dvd_reader.h"
27
28
#ifdef __cplusplus
29
extern
"C"
{
30
#endif
31
39
ifo_handle_t
*ifoOpen(
dvd_reader_t
*,
int
);
40
48
ifo_handle_t
*ifoOpenVMGI(
dvd_reader_t
*);
49
57
ifo_handle_t
*ifoOpenVTSI(
dvd_reader_t
*,
int
);
58
64
void
ifoClose(
ifo_handle_t
*);
65
79
int
ifoRead_PTL_MAIT(
ifo_handle_t
*);
80
89
int
ifoRead_VTS_ATRT(
ifo_handle_t
*);
90
98
int
ifoRead_TT_SRPT(
ifo_handle_t
*);
99
108
int
ifoRead_VTS_PTT_SRPT(
ifo_handle_t
*);
109
117
int
ifoRead_FP_PGC(
ifo_handle_t
*);
118
128
int
ifoRead_PGCIT(
ifo_handle_t
*);
129
140
int
ifoRead_PGCI_UT(
ifo_handle_t
*);
141
150
int
ifoRead_VTS_TMAPT(
ifo_handle_t
*);
151
162
int
ifoRead_C_ADT(
ifo_handle_t
*);
163
172
int
ifoRead_TITLE_C_ADT(
ifo_handle_t
*);
173
184
int
ifoRead_VOBU_ADMAP(
ifo_handle_t
*);
185
194
int
ifoRead_TITLE_VOBU_ADMAP(
ifo_handle_t
*);
195
204
int
ifoRead_TXTDT_MGI(
ifo_handle_t
*);
205
212
void
ifoFree_PTL_MAIT(
ifo_handle_t
*);
213
void
ifoFree_VTS_ATRT(
ifo_handle_t
*);
214
void
ifoFree_TT_SRPT(
ifo_handle_t
*);
215
void
ifoFree_VTS_PTT_SRPT(
ifo_handle_t
*);
216
void
ifoFree_FP_PGC(
ifo_handle_t
*);
217
void
ifoFree_PGCIT(
ifo_handle_t
*);
218
void
ifoFree_PGCI_UT(
ifo_handle_t
*);
219
void
ifoFree_VTS_TMAPT(
ifo_handle_t
*);
220
void
ifoFree_C_ADT(
ifo_handle_t
*);
221
void
ifoFree_TITLE_C_ADT(
ifo_handle_t
*);
222
void
ifoFree_VOBU_ADMAP(
ifo_handle_t
*);
223
void
ifoFree_TITLE_VOBU_ADMAP(
ifo_handle_t
*);
224
void
ifoFree_TXTDT_MGI(
ifo_handle_t
*);
225
226
#ifdef __cplusplus
227
};
228
#endif
229
#endif
/* LIBDVDREAD_IFO_READ_H */
dvd_reader_s
Definition:
dvd_reader.c:82
ifo_handle_t
Definition:
ifo_types.h:728