]> git.sesse.net Git - vlc/blobdiff - include/vlc_fs.h
Use var_Inherit* instead of var_CreateGet*.
[vlc] / include / vlc_fs.h
index 42d5b9b9c50a560cab87f175442b30ecc7b8ce33..1210683153ec1fb2eeca48a34ed5d711a5519143 100644 (file)
@@ -42,18 +42,16 @@ VLC_EXPORT( int, vlc_scandir, ( const char *dirname, char ***namelist, int (*sel
 VLC_EXPORT( int, vlc_mkdir, ( const char *filename, mode_t mode ) );
 
 VLC_EXPORT( int, vlc_unlink, ( const char *filename ) );
-/* Not exported */
-int vlc_rename( const char *, const char * );
+VLC_EXPORT( int, vlc_rename, ( const char *oldpath, const char *newpath ) );
 
 #if defined( WIN32 ) && !defined( UNDER_CE )
 # define stat _stati64
 #endif
 
 VLC_EXPORT( int, vlc_stat, ( const char *filename, struct stat *buf ) );
-VLC_EXPORT( int, utf8_lstat, ( const char *filename, struct stat *buf ) );
+VLC_EXPORT( int, vlc_lstat, ( const char *filename, struct stat *buf ) );
 
 VLC_EXPORT( int, vlc_mkstemp, ( char * ) );
 
 VLC_EXPORT( int, vlc_dup, ( int ) );
-
 #endif