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

This commit is contained in:
troy%netscape.com 1998-08-27 05:28:32 +00:00
Родитель 5998e7b720
Коммит c01afd5fbf
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -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 {