--- mstools/samples/mandel/bndscan.c 2018/08/09 18:20:41 1.1 +++ mstools/samples/mandel/bndscan.c 2018/08/09 18:21:40 1.1.1.2 @@ -13,6 +13,7 @@ * none * \**************************************************************************/ +//#define STRICT #include #include #include "jtypes.h" @@ -229,7 +230,9 @@ LPPOINT pptTrace(LONG m, LONG n, PINFO p // it's not enough, it is more likely that it is an error. // if ((lpPt = (PPOINT) GlobalAlloc(GMEM_FIXED, MAXPOINT * sizeof(POINT))) == NULL) { - MessageBox(ghwndMain, "Failed in Memory Allocation for lpPt!", "Error", MB_OK); + //MessageBox(ghwndMain, "Failed in Memory Allocation for lpPt!", "Error", MB_OK); + sprintf( gtext,"Failed in Memory Allocation for lpPt!\n"); + OutputDebugString( gtext ); return (LPPOINT) NULL; } lpTmpPt = lpPt;