Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/thirdparty/ZenLib/ZenLib/Conf.cpp')
-rw-r--r--src/thirdparty/ZenLib/ZenLib/Conf.cpp43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/thirdparty/ZenLib/ZenLib/Conf.cpp b/src/thirdparty/ZenLib/ZenLib/Conf.cpp
deleted file mode 100644
index 0251d33a7..000000000
--- a/src/thirdparty/ZenLib/ZenLib/Conf.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
-/* Copyright (c) MediaArea.net SARL. All Rights Reserved.
- *
- * Use of this source code is governed by a zlib-style license that can
- * be found in the License.txt file in the root of the source tree.
- */
-
-//---------------------------------------------------------------------------
-#include "ZenLib/PreComp.h"
-#ifdef __BORLANDC__
- #pragma hdrstop
-#endif
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#include "ZenLib/Conf_Internal.h"
-//---------------------------------------------------------------------------
-
-namespace ZenLib
-{
-
-//***************************************************************************
-// Platform differences
-//***************************************************************************
-
-//End of line
-#ifdef WINDOWS
- const Char* EOL=__T("\r\n");
- const Char PathSeparator=__T('\\');
-#endif
-#ifdef UNIX
- const Char* EOL=__T("\n");
- const Char PathSeparator=__T('/');
-#endif
-#if defined (MACOS) || defined (MACOSX)
- const Char* EOL=__T("\n");
- const Char PathSeparator=__T('/');
-#endif
-
-//***************************************************************************
-//
-//***************************************************************************
-
-} //namespace