Author: hbelusca
Date: Sun Oct 14 14:03:51 2012
New Revision: 57563

URL: http://svn.reactos.org/svn/reactos?rev=57563&view=rev
Log:
Enable widl to read .idl files when they are in another disk drive. (This 
enable the ReactOS' source code to be placed e.g. in C:\ros_src, and to be 
compiled into G:\rosbuild)

Modified:
    branches/ros-csrss/tools/wpp/preproc.c

Modified: branches/ros-csrss/tools/wpp/preproc.c
URL: 
http://svn.reactos.org/svn/reactos/branches/ros-csrss/tools/wpp/preproc.c?rev=57563&r1=57562&r2=57563&view=diff
==============================================================================
--- branches/ros-csrss/tools/wpp/preproc.c [iso-8859-1] (original)
+++ branches/ros-csrss/tools/wpp/preproc.c [iso-8859-1] Sun Oct 14 14:03:51 2012
@@ -447,7 +447,12 @@
  * Include management
  *-------------------------------------------------------------------------
  */
-#if defined(_Windows) || defined(__MSDOS__)
+#if ( defined(_Windows) || defined(_WINDOWS)  || defined(WIN32) || \
+      defined(_WIN32)   || defined(__WIN32__) || defined(__MSDOS__) )
+/*
+ * Windows system uses ':' as part of its path.
+ * Therefore use another separator character.
+ */
 #define INCLUDESEPARATOR       ";"
 #else
 #define INCLUDESEPARATOR       ":"


Reply via email to