home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / _NFILE.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  378b  |  30 lines

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