home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / newmode.c < prev    next >
C/C++ Source or Header  |  1998-06-17  |  755b  |  22 lines

  1. /***
  2. *newmode.c - set new() handler mode to handle malloc failures
  3. *
  4. *       Copyright (c) 1994-1997, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *       Sets the global flag which controls whether the new() handler
  8. *       is called on malloc failures.  The default behavior in Visual
  9. *       C++ v2.0 and later is not to, that malloc failures return NULL
  10. *       without calling the new handler.  Linking with this object changes
  11. *       the start-up behavior to call the new handler on malloc failures.
  12. *
  13. *******************************************************************************/
  14.  
  15.  
  16. #include <internal.h>
  17.  
  18. /* enable new handler calls upon malloc failures */
  19.  
  20. int _newmode = 1;       /* Malloc New Handler MODE */
  21.  
  22.