~videolan/vlc/old-trunk

« back to all changes in this revision

Viewing changes to src/misc/configuration.c

  • Committer: dionoea
  • Date: 2006-09-24 15:11:33 UTC
  • Revision ID: vcs-imports@canonical.com-20060924151133-55b3d6aea2fd327e
Define DIR_SEP only once

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * configuration.c management of the modules configuration
3
3
 *****************************************************************************
4
4
 * Copyright (C) 2001-2004 the VideoLAN team
5
 
 * $Id: configuration.c 16658 2006-09-15 14:31:51Z zorglub $
 
5
 * $Id: configuration.c 16830 2006-09-24 15:11:33Z dionoea $
6
6
 *
7
7
 * Authors: Gildas Bazin <gbazin@videolan.org>
8
8
 *
63
63
#include <tchar.h>
64
64
#endif
65
65
 
66
 
#if defined( WIN32 ) || defined( UNDER_CE )
67
 
#   define DIR_SEP "\\"
68
 
#else
69
 
#   define DIR_SEP "/"
70
 
#endif
71
 
 
72
66
static int ConfigStringToKey( char * );
73
67
static char *ConfigKeyToString( int );
74
68