]> git.sesse.net Git - vlc/commitdiff
Define DIR_SEP only once
authorAntoine Cellerier <dionoea@videolan.org>
Sun, 24 Sep 2006 15:11:33 +0000 (15:11 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Sun, 24 Sep 2006 15:11:33 +0000 (15:11 +0000)
include/vlc_common.h
src/input/input.c
src/misc/configuration.c
src/playlist/loadsave.c

index 7dff7b401fad67a7661b435153281fb30275e0d0..a97bdb74bf9e7ba0fd07559220a3382e7af3da52 100644 (file)
@@ -1278,3 +1278,8 @@ VLC_EXPORT( const char *, VLC_Changeset, ( void ) );
 #   define PACKAGE
 #endif
 
+#if defined( WIN32 ) || defined( UNDER_CE )
+#   define DIR_SEP "\\"
+#else
+#   define DIR_SEP "/"
+#endif
index 2858aac2bcdb87f7b54593d65db85f27b8dcabab..29c270e74304df3982cd469465b173dea5e1bcc2 100644 (file)
@@ -83,8 +83,6 @@ static void SlaveSeek( input_thread_t *p_input );
 
 static void InputMetaUser( input_thread_t *p_input );
 
-int input_DownloadAndCacheArt( vlc_object_t *p_parent, input_item_t *p_item );
-
 /*****************************************************************************
  * This function creates a new input, and returns a pointer
  * to its description. On error, it returns NULL.
index ce2dd518be24427bc76bc2c0d97358658db8cbe6..99e9f709c264e8306f2eba02af8d80aa12262b2e 100644 (file)
 #include <tchar.h>
 #endif
 
-#if defined( WIN32 ) || defined( UNDER_CE )
-#   define DIR_SEP "\\"
-#else
-#   define DIR_SEP "/"
-#endif
-
 static int ConfigStringToKey( char * );
 static char *ConfigKeyToString( int );
 
index 038b16dbf70581913c6e09614136ee4fa876ba18..aa898d7f5205b1b31c8ce74bc727c84278db4a38 100644 (file)
 #include "charset.h"
 #include <errno.h>
 
-#if defined( WIN32 ) || defined( UNDER_CE )
-#   define DIR_SEP "\\"
-#else
-#   define DIR_SEP "/"
-#endif
-
 /**
  * Import a playlist file at a given point of a given view
  * \param p_playlist the playlist to which the new items will be added