]> git.sesse.net Git - vlc/blobdiff - modules/access/fs.h
Used uint64_t for access_t::info.i_size/i_pos and access_t::pf_seek().
[vlc] / modules / access / fs.h
index 3577c2af4c610ef860c7df4772ca6f7554794148..a2eba257072d7fd101803879c0b6103306619a9a 100644 (file)
 
 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 *);