00001 /* 00002 * This code is based on dvdudf by: 00003 * Christian Wolff <scarabaeus@convergence.de>. 00004 * 00005 * Modifications by: 00006 * Billy Biggs <vektor@dumbterm.net>. 00007 * Björn Englund <d4bjorn@dtek.chalmers.se>. 00008 * 00009 * dvdudf: parse and read the UDF volume information of a DVD Video 00010 * Copyright (C) 1999 Christian Wolff for convergence integrated media 00011 * GmbH The author can be reached at scarabaeus@convergence.de, the 00012 * project's page is at http://linuxtv.org/dvd/ 00013 * 00014 * This file is part of libdvdread. 00015 * 00016 * libdvdread is free software; you can redistribute it and/or modify 00017 * it under the terms of the GNU General Public License as published by 00018 * the Free Software Foundation; either version 2 of the License, or 00019 * (at your option) any later version. 00020 * 00021 * libdvdread is distributed in the hope that it will be useful, 00022 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00023 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00024 * GNU General Public License for more details. 00025 * 00026 * You should have received a copy of the GNU General Public License along 00027 * with libdvdread; if not, write to the Free Software Foundation, Inc., 00028 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 00029 */ 00030 00031 #ifndef LIBDVDREAD_DVD_UDF_H 00032 #define LIBDVDREAD_DVD_UDF_H 00033 00034 #include <inttypes.h> 00035 00036 #include "dvdread/dvd_reader.h" 00037 00038 #ifdef __cplusplus 00039 extern "C" { 00040 #endif 00041 00049 uint32_t UDFFindFile( dvd_reader_t *device, char *filename, uint32_t *size ); 00050 00051 void FreeUDFCache(void *cache); 00052 int UDFGetVolumeIdentifier(dvd_reader_t *device, 00053 char *volid, unsigned int volid_size); 00054 int UDFGetVolumeSetIdentifier(dvd_reader_t *device, 00055 uint8_t *volsetid, unsigned int volsetid_size); 00056 void *GetUDFCacheHandle(dvd_reader_t *device); 00057 void SetUDFCacheHandle(dvd_reader_t *device, void *cache); 00058 00059 #ifdef __cplusplus 00060 }; 00061 #endif 00062 #endif /* LIBDVDREAD_DVD_UDF_H */
1.6.3