Made sure that _I32_MIN is defined (it appears to be a Windows only thing)

git-svn-id: svn://10.0.0.236/trunk@8600 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
troy%netscape.com 1998-08-27 05:28:32 +00:00
parent 0e484541ef
commit 50594d5ee2

View File

@ -26,6 +26,10 @@
#include "nsIPresContext.h"
#include <limits.h>
#if !defined(_I32_MIN)
#define _I32_MIN (-2147483647i32 - 1) /* minimum signed 32 bit value */
#endif
static NS_DEFINE_IID(kIStyleRuleIID, NS_ISTYLE_RULE_IID);
class LayerPart : public nsHTMLContainer {