00001 /* 00002 * This file is part of libbluray 00003 * Copyright (C) 2010 fraxinas 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Lesser General Public 00007 * License as published by the Free Software Foundation; either 00008 * version 2.1 of the License, or (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Lesser General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Lesser General Public 00016 * License along with this library. If not, see 00017 * <http://www.gnu.org/licenses/>. 00018 */ 00019 00020 #include "meta_data.h" 00021 00022 #ifdef __cplusplus 00023 extern "C" { 00024 #endif 00025 00026 #if !defined(_META_PARSE_H_) 00027 #define _META_PARSE_H_ 00028 00029 BD_PRIVATE META_ROOT* meta_parse(const char *device_path); 00030 BD_PRIVATE void meta_free(META_ROOT **index); 00031 BD_PRIVATE META_DL* meta_get(META_ROOT *meta_root, const char *language_code); 00032 00033 #ifdef __cplusplus 00034 }; 00035 #endif 00036 00037 #endif // _META_PARSE_H_ 00038
1.6.3