From 613156caf8b00e2d4ec710da359d1a4774fad707 Mon Sep 17 00:00:00 2001 From: Royce Mitchell III Date: Thu, 20 Oct 2005 14:10:23 +0000 Subject: [PATCH] msvc6+psdk fix svn path=/trunk/; revision=18630 --- reactos/tools/rbuild/pch.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/reactos/tools/rbuild/pch.h b/reactos/tools/rbuild/pch.h index 332ddc3a4c0..c31acbf044c 100644 --- a/reactos/tools/rbuild/pch.h +++ b/reactos/tools/rbuild/pch.h @@ -27,11 +27,15 @@ #include #include +#ifdef WIN32 +#include +#ifndef MAX_PATH +#define MAX_PATH _MAX_PATH +#endif//MAX_PATH +#endif//WIN32 + #include -#ifdef _MSC_VER -#define MAX_PATH _MAX_PATH -#endif #ifndef WIN32 #include -- 2.17.1