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

  1. /*------------------------------------------------------------------------
  2.  * filename - ioconfig.h
  3.  *
  4.  *      configuration data for C++ I/O streams
  5.  *-----------------------------------------------------------------------*/
  6.  
  7. /*[]------------------------------------------------------------[]*/
  8. /*|                                                              |*/
  9. /*|     C/C++ Run Time Library - Version 4.0                     |*/
  10. /*|                                                              |*/
  11. /*|                                                              |*/
  12. /*|     Copyright (c) 1990, 1991 by Borland International        |*/
  13. /*|     All Rights Reserved.                                     |*/
  14. /*|                                                              |*/
  15. /*[]------------------------------------------------------------[]*/
  16.  
  17. #if !defined( __IOCONFIG_H )
  18. #define __IOCONFIG_H
  19.  
  20.  
  21. #undef _BIG_INLINE          // disable expansion of large inline functions
  22.  
  23. const MaxCharsInLong        = 16;
  24. const StreambufSize         = 1024;
  25. const MinStrstreamAlloc     = 16;
  26. const MinStrstreamIncr      = 4;
  27.  
  28. #endif  // __IOCONFIG_H
  29.  
  30.