home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / sybase / starbuck / h.z / WCDEFS.H < prev    next >
C/C++ Source or Header  |  1996-07-24  |  649b  |  34 lines

  1. //
  2. //  wcdefs.h   Definitions for the WATCOM Container Classes
  3. //
  4. //  Copyright by WATCOM International Corp. 1988-1996.  All rights reserved.
  5. //
  6. #ifndef _WCDEFS_H_INCLUDED
  7. #define _WCDEFS_H_INCLUDED
  8.  
  9. #ifndef __cplusplus
  10. #error wcdefs.h is for use with C++
  11. #endif
  12.  
  13. #ifndef _COMDEF_H_INCLUDED
  14.  #include <_comdef.h>
  15. #endif
  16. #ifndef _EXCEPT_H_INCLUDED
  17.  #include <except.h>
  18. #endif
  19.  
  20. typedef int             WCbool;
  21.  
  22. #ifndef TRUE
  23.     #define TRUE        ((WCbool)1)
  24.     #define FALSE       ((WCbool)0)
  25. #endif
  26.  
  27. #ifndef _SIZE_T_DEFINED
  28. #define _SIZE_T_DEFINED
  29. #define _SIZE_T_DEFINED_
  30. typedef unsigned size_t;
  31. #endif
  32.  
  33. #endif
  34.