00001 /* 00002 * Copyright (C) 2000, 2001, 2002 Björn Englund <d4bjorn@dtek.chalmers.se>, 00003 * Håkan Hjort <d95hjort@dtek.chalmers.se> 00004 * 00005 * This file is part of libdvdread. 00006 * 00007 * libdvdread is free software; you can redistribute it and/or modify 00008 * it under the terms of the GNU General Public License as published by 00009 * the Free Software Foundation; either version 2 of the License, or 00010 * (at your option) any later version. 00011 * 00012 * libdvdread is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU General Public License along 00018 * with libdvdread; if not, write to the Free Software Foundation, Inc., 00019 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 00020 */ 00021 00022 #ifndef LIBDVDREAD_IFO_READ_H 00023 #define LIBDVDREAD_IFO_READ_H 00024 00025 #include "ifo_types.h" 00026 #include "dvdread/dvd_reader.h" 00027 00028 #ifdef __cplusplus 00029 extern "C" { 00030 #endif 00031 00039 ifo_handle_t *ifoOpen(dvd_reader_t *, int ); 00040 00048 ifo_handle_t *ifoOpenVMGI(dvd_reader_t *); 00049 00057 ifo_handle_t *ifoOpenVTSI(dvd_reader_t *, int); 00058 00064 void ifoClose(ifo_handle_t *); 00065 00079 int ifoRead_PTL_MAIT(ifo_handle_t *); 00080 00089 int ifoRead_VTS_ATRT(ifo_handle_t *); 00090 00098 int ifoRead_TT_SRPT(ifo_handle_t *); 00099 00108 int ifoRead_VTS_PTT_SRPT(ifo_handle_t *); 00109 00117 int ifoRead_FP_PGC(ifo_handle_t *); 00118 00128 int ifoRead_PGCIT(ifo_handle_t *); 00129 00140 int ifoRead_PGCI_UT(ifo_handle_t *); 00141 00150 int ifoRead_VTS_TMAPT(ifo_handle_t *); 00151 00162 int ifoRead_C_ADT(ifo_handle_t *); 00163 00172 int ifoRead_TITLE_C_ADT(ifo_handle_t *); 00173 00184 int ifoRead_VOBU_ADMAP(ifo_handle_t *); 00185 00194 int ifoRead_TITLE_VOBU_ADMAP(ifo_handle_t *); 00195 00204 int ifoRead_TXTDT_MGI(ifo_handle_t *); 00205 00212 void ifoFree_PTL_MAIT(ifo_handle_t *); 00213 void ifoFree_VTS_ATRT(ifo_handle_t *); 00214 void ifoFree_TT_SRPT(ifo_handle_t *); 00215 void ifoFree_VTS_PTT_SRPT(ifo_handle_t *); 00216 void ifoFree_FP_PGC(ifo_handle_t *); 00217 void ifoFree_PGCIT(ifo_handle_t *); 00218 void ifoFree_PGCI_UT(ifo_handle_t *); 00219 void ifoFree_VTS_TMAPT(ifo_handle_t *); 00220 void ifoFree_C_ADT(ifo_handle_t *); 00221 void ifoFree_TITLE_C_ADT(ifo_handle_t *); 00222 void ifoFree_VOBU_ADMAP(ifo_handle_t *); 00223 void ifoFree_TITLE_VOBU_ADMAP(ifo_handle_t *); 00224 void ifoFree_TXTDT_MGI(ifo_handle_t *); 00225 00226 #ifdef __cplusplus 00227 }; 00228 #endif 00229 #endif /* LIBDVDREAD_IFO_READ_H */
1.6.3