home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / TCPP30-1.ZIP / CLASSINC.ZIP / RESOURCE.H < prev    next >
C/C++ Source or Header  |  1992-02-18  |  1KB  |  30 lines

  1. /*------------------------------------------------------------------------*/
  2. /*                                                                        */
  3. /*  RESOURCE.H                                                            */
  4. /*                                                                        */
  5. /*  Copyright Borland International 1991                                  */
  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. const DEFAULT_HASH_TABLE_SIZE   = 111;
  22. const DEFAULT_BAG_SIZE          =  29;
  23. const DEFAULT_SET_SIZE          =  29;
  24. const DEFAULT_DEQUE_SIZE        =  20;
  25. const DEFAULT_QUEUE_SIZE        =  20;
  26. const DEFAULT_STACK_SIZE        =  20;
  27. const DEFAULT_ARRAY_SIZE        =  20;
  28.  
  29. #endif 
  30.