/[svn]/linuxsampler/trunk/src/common/File.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/common/File.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2312 by persson, Tue Jul 14 18:25:11 2009 UTC revision 2313 by persson, Sun Feb 12 11:32:43 2012 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2   *                                                                         *   *                                                                         *
3   *   Copyright (C) 2008 - 2009 Grigor Iliev, Benno Senoner                 *   *   Copyright (C) 2008 - 2012 Grigor Iliev, Benno Senoner                 *
4   *                                                                         *   *                                                                         *
5   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
6   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
# Line 37  Line 37 
37    
38  namespace LinuxSampler {  namespace LinuxSampler {
39  #ifdef WIN32  #ifdef WIN32
40      char File::DirSeparator = '\\';      const char File::DirSeparator = '\\';
41        const char File::PathSeparator = ';';
42  #else  #else
43      char File::DirSeparator = '/';      const char File::DirSeparator = '/';
44        const char File::PathSeparator = ':';
45  #endif  #endif
46      Mutex File::DirectoryWalkerMutex;      Mutex File::DirectoryWalkerMutex;
47      std::vector<File::DirectoryWalker*> File::DirectoryWalkers;      std::vector<File::DirectoryWalker*> File::DirectoryWalkers;

Legend:
Removed from v.2312  
changed lines
  Added in v.2313

  ViewVC Help
Powered by ViewVC