home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 2.ddi / CLASSINC.ZIP / RESOURCE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  1.4 KB  |  41 lines

  1. /*------------------------------------------------------------------------*/
  2. /*                                                                        */
  3. /*  RESOURCE.H                                                            */
  4. /*                                                                        */
  5. /*  Copyright Borland International 1991, 1992                            */
  6. /*  All Rights Reserved                                                   */
  7. /*                                                                        */
  8. /*------------------------------------------------------------------------*/
  9.  
  10. #if !defined( __RESOURCE_H )
  11. #define __RESOURCE_H
  12.  
  13. #if !defined( __LIMITS_H )
  14. #include <Limits.h>
  15. #endif  // __LIMITS_H
  16.  
  17. #if defined( __DLL__ )
  18. #define WINDOWS_WEP_BUG     // no destructors for static objects in a DLL
  19. #endif
  20.  
  21. #pragma option -Vo-
  22. #if defined( __BCOPT__ ) && !defined( _ALLOW_po )
  23. #pragma option -po-
  24. #endif
  25.  
  26. const DEFAULT_HASH_TABLE_SIZE   = 111;
  27. const DEFAULT_BAG_SIZE          =  29;
  28. const DEFAULT_SET_SIZE          =  29;
  29. const DEFAULT_DEQUE_SIZE        =  20;
  30. const DEFAULT_QUEUE_SIZE        =  20;
  31. const DEFAULT_STACK_SIZE        =  20;
  32. const DEFAULT_ARRAY_SIZE        =  20;
  33. const DEFAULT_DICT_SIZE         =  20;
  34.  
  35. #if defined( __BCOPT__ ) && !defined( _ALLOW_po )
  36. #pragma option -po.
  37. #endif
  38. #pragma option -Vo.
  39.  
  40. #endif 
  41.