home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / Include / crtdbg.h < prev    next >
C/C++ Source or Header  |  2000-02-01  |  1KB  |  63 lines

  1. /* Borland version of Microsoft CRTDBG.H header file
  2.    This is used by MFC and ATL.
  3. */
  4.  
  5. /*
  6.  *      C/C++ Run Time Library - Version 10.0
  7.  *
  8.  *      Copyright (c) 1999, 2000 by Inprise Corporation
  9.  *      All Rights Reserved.
  10.  *
  11.  */
  12.  
  13. /* $Revision:   9.0  $ */
  14.  
  15. #ifndef _INC_CRTDBG
  16. #define _INC_CRTDBG
  17.  
  18. #ifndef __UTILCLS_H
  19.  
  20. #include <windows.h>
  21.  
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* Prototypes for internal RTL helper functions: */
  26. void _ErrorMessage(const char *__message);
  27. void _ErrorExit   (const char *__message);
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31.  
  32. /* Asserts */
  33.  
  34. #if !defined(_DEBUG)
  35.  
  36. #define _ASSERT(expr) ((void)0)
  37. #define _ASSERTE(expr) ((void)0)
  38.  
  39. #else /* !defined(_DEBUG) */
  40.  
  41. #define _ASSERT(a) _ASSERTE(a)
  42. #define  _ASSERTE(expr) do {                                                            \
  43.   if (!(expr) && __ASSERTE_Helper (#expr, __FILE__, __LINE__) == IDCANCEL)              \
  44.     ::DebugBreak();                                                                     \
  45. } while (0)
  46.  
  47. /* _ASSERTE helper routine returns: MB_YES, MB_NO or MB_CANCEL
  48. */
  49. __inline int __ASSERTE_Helper(bool expr, char *file, int line)
  50. {
  51.   TCHAR msg[256*2];
  52.   ::wsprintf(msg, _T("%s failed - %s/%d"), expr, file, line);
  53. /*  throw (msg); */
  54.   _ErrorExit(msg);
  55.   return 0; /* Never really gets here */
  56. }
  57.  
  58. #endif /* !defined(_DEBUG) */
  59.  
  60. #endif /* __UTILCLS_H */
  61.  
  62. #endif /* _INC_CRTDBG */
  63.