]> git.sesse.net Git - vlc/blobdiff - include/vlc_fs.h
libvlc: Export libvlc_media_is_parsed instead of libvlc_media_is_preparsed.
[vlc] / include / vlc_fs.h
index 9f03b1b1ac73d8297afea438d021aab3415e8954..42d5b9b9c50a560cab87f175442b30ecc7b8ce33 100644 (file)
@@ -33,6 +33,7 @@
 
 VLC_EXPORT( int, vlc_open, ( const char *filename, int flags, ... ) LIBVLC_USED );
 VLC_EXPORT( FILE *, vlc_fopen, ( const char *filename, const char *mode ) LIBVLC_USED );
+VLC_EXPORT( int, vlc_openat, ( int fd, const char *filename, int flags, ... ) LIBVLC_USED );
 
 VLC_EXPORT( DIR *, vlc_opendir, ( const char *dirname ) LIBVLC_USED );
 VLC_EXPORT( char *, vlc_readdir, ( DIR *dir ) LIBVLC_USED );
@@ -53,4 +54,6 @@ VLC_EXPORT( int, utf8_lstat, ( const char *filename, struct stat *buf ) );
 
 VLC_EXPORT( int, vlc_mkstemp, ( char * ) );
 
+VLC_EXPORT( int, vlc_dup, ( int ) );
+
 #endif