home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / XDefines.h < prev    next >
Text File  |  1998-01-20  |  332b  |  27 lines

  1. #ifndef __XDEFINES_H__
  2. #define __XDEFINES_H__
  3.  
  4.  
  5. ///////////////#define DEBUG  // release: clear this
  6.  
  7.  
  8. #ifndef NULL
  9.   #define NULL 0
  10. #endif
  11.  
  12. #define X_ERR -1
  13. //#define X_OK  0
  14.  
  15. #ifdef DEBUG
  16.   #include "assert.h"
  17.   #define ASSERT(x) assert(x)
  18. #else
  19.   #define ASSERT(x)
  20. #endif
  21.  
  22. #ifndef ABSTRACT
  23.   #define ABSTRACT = 0
  24. #endif
  25.  
  26. #endif
  27.