home *** CD-ROM | disk | FTP | other *** search
/ ...taking it to the Macs! / ...taking it to the Macs!.iso / Extras / ActiveX Mac SDK / ActiveX SDK / Headers / UIDEBUG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-22  |  316 b   |  16 lines  |  [TEXT/????]

  1. #ifndef _DEBUG_H
  2. #define _DEBUG_H
  3.  
  4.  
  5. #ifndef ASSERTCOND
  6. #ifdef _DEBUG
  7. extern void __UIASSERTCONDSZ(char *, char *, char *, int);
  8. #define ASSERTCOND(f) ( (f) ? (void) 0 : (__UIASSERTCONDSZ(#f, NULL, __FILE__, __LINE__)))
  9. #else
  10. #define ASSERTCOND(f) ((void)0)
  11. #endif // _DEBUG
  12. #endif // ASSERTCOND
  13.  
  14.  
  15. #endif //!_DEBUG_H
  16.