]> git.sesse.net Git - vlc/blobdiff - modules/access/fs.h
Merge branch 'master' into lpcm_encoder
[vlc] / modules / access / fs.h
index 3577c2af4c610ef860c7df4772ca6f7554794148..de5e4936499653769b4277f2044e027a24daa77b 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#include <vlc_charset.h>
+#include <dirent.h>
 
 int Open (vlc_object_t *);
 void Close (vlc_object_t *);
-int NoSeek (access_t *, int64_t);
+int NoSeek (access_t *, uint64_t);
 
 ssize_t FileRead (access_t *, uint8_t *, size_t);
-int FileSeek (access_t *, int64_t);
+int FileSeek (access_t *, uint64_t);
 int FileControl (access_t *, int, va_list);
 
 int DirOpen (vlc_object_t *);