Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
937b6249
Commit
937b6249
authored
Sep 24, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define DIR_SEP only once
parent
a2d07c05
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
14 deletions
+5
-14
include/vlc_common.h
include/vlc_common.h
+5
-0
src/input/input.c
src/input/input.c
+0
-2
src/misc/configuration.c
src/misc/configuration.c
+0
-6
src/playlist/loadsave.c
src/playlist/loadsave.c
+0
-6
No files found.
include/vlc_common.h
View file @
937b6249
...
...
@@ -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
src/input/input.c
View file @
937b6249
...
...
@@ -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.
...
...
src/misc/configuration.c
View file @
937b6249
...
...
@@ -63,12 +63,6 @@
#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
);
...
...
src/playlist/loadsave.c
View file @
937b6249
...
...
@@ -27,12 +27,6 @@
#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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment