Bug 418957 - "js/src/prmjtime.c uses the wrong value for NS_HAVE_INVALID_PARAMETER_HANDLER on windows mobile" [p=dougt@meer.net (Doug Turner) r+a1.9=crowder]

This commit is contained in:
reed@reedloden.com 2008-02-22 15:49:41 -08:00
parent 218ee15045
commit 8245eb76f2

View File

@ -63,7 +63,8 @@
#include <winbase.h> #include <winbase.h>
#include <math.h> /* for fabs */ #include <math.h> /* for fabs */
#include <mmsystem.h> /* for timeBegin/EndPeriod */ #include <mmsystem.h> /* for timeBegin/EndPeriod */
#if _MSC_VER >= 1400 /* VC++ 8.0 or later */ /* VC++ 8.0 or later, and not WINCE */
#if _MSC_VER >= 1400 && !defined(WINCE)
#define NS_HAVE_INVALID_PARAMETER_HANDLER 1 #define NS_HAVE_INVALID_PARAMETER_HANDLER 1
#endif #endif
#ifdef NS_HAVE_INVALID_PARAMETER_HANDLER #ifdef NS_HAVE_INVALID_PARAMETER_HANDLER