00001 /***************************************************************************** 00002 * fs.h: file system access plug-in common header 00003 ***************************************************************************** 00004 * Copyright (C) 2009 Rémi Denis-Courmont 00005 * 00006 * This program is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation; either version 2 of the License, or 00009 * (at your option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 00019 *****************************************************************************/ 00020 00021 #include <dirent.h> 00022 00023 int Open (vlc_object_t *); 00024 void Close (vlc_object_t *); 00025 int NoSeek (access_t *, uint64_t); 00026 00027 ssize_t FileRead (access_t *, uint8_t *, size_t); 00028 int FileSeek (access_t *, uint64_t); 00029 int FileControl (access_t *, int, va_list); 00030 00031 int DirOpen (vlc_object_t *); 00032 int DirInit (access_t *p_access, DIR *handle); 00033 block_t *DirBlock (access_t *); 00034 int DirControl (access_t *, int, va_list); 00035 void DirClose (vlc_object_t *);
1.5.6