From e1d7bd417387d2433e4219615beca95c0d2ac475 Mon Sep 17 00:00:00 2001 From: notpete Date: Sat, 15 May 2004 17:48:39 +0000 Subject: [PATCH] Added workaround for duplicate CStr in 3DSMAX. This was SVN commit r230. --- source/ps/CStr.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/ps/CStr.h b/source/ps/CStr.h index 1a14308a78..830141b04e 100755 --- a/source/ps/CStr.h +++ b/source/ps/CStr.h @@ -84,6 +84,9 @@ typedef char TCHAR; enum PS_TRIM_MODE {PS_TRIM_LEFT, PS_TRIM_RIGHT, PS_TRIM_BOTH}; +// yuck - MAX already defines a CStr class... +#define CStr PS_CStr + // CStr class, the mother of all strings class CStr: public ISerializable