Skip to content
Snippets Groups Projects
Commit beeaf73d authored by Romain Garrigues's avatar Romain Garrigues
Browse files

Modifications pour la compatibilité du code avec Cygwin

parent 922b08f3
Branches
Tags
No related merge requests found
......@@ -20,7 +20,8 @@
#include <string.h> // strdup
#if defined(WIN32) || defined(WIN32CE)
#if (defined(WIN32) || defined(WIN32CE)) && !defined(__CYGWIN__)
/*=====================================================================
WIN32 / MSVC++ implementation
*====================================================================*/
......@@ -103,7 +104,7 @@ System::GetShortFileName( const std::string& filename )
return( shortFileName );
}
#if defined(WIN32) || defined(WIN32CE)
#if (defined(WIN32) || defined(WIN32CE)) && !defined(__CYGWIN__)
/*=====================================================================
WIN32 / MSVC++ implementation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment