home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / INC.PAK / _NFILE.H < prev    next >
C/C++ Source or Header  |  1995-08-29  |  351b  |  29 lines

  1. /*  _nfile.h
  2.  
  3.     Maximum number of open files
  4.  
  5. */
  6.  
  7. /*
  8.  *      C/C++ Run Time Library - Version 6.5
  9.  *
  10.  *      Copyright (c) 1991, 1994 by Borland International
  11.  *      All Rights Reserved.
  12.  *
  13.  */
  14.  
  15. #ifndef ___NFILE_H
  16. #define ___NFILE_H
  17.  
  18. #if !defined(__FLAT__)
  19.  
  20. #define _NFILE_ 20
  21.  
  22. #else
  23.  
  24. #define _NFILE_ 40
  25.  
  26. #endif
  27.  
  28. #endif
  29.