home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / FILES.C < prev    next >
C/C++ Source or Header  |  1997-02-28  |  1KB  |  46 lines

  1. /*-----------------------------------------------------------------------*
  2.  * filename - files.c
  3.  *
  4.  * function(s)
  5.  *        none
  6.  *-----------------------------------------------------------------------*/
  7.  
  8. /*
  9.  *      C/C++ Run Time Library - Version 8.0
  10.  *
  11.  *      Copyright (c) 1987, 1997 by Borland International
  12.  *      All Rights Reserved.
  13.  *
  14.  */
  15. /* $Revision:   8.2  $        */
  16.  
  17. #include <stdio.h>
  18. #include <_nfile.h>
  19.  
  20. /*----------------------------------------------------------------------
  21.  * The following external reference forces _init_streams (in streams.obj)
  22.  * to be called at startup.
  23.  */
  24. extern void _RTLENTRY _init_streams(void);
  25. #pragma startup       _init_streams 5
  26.  
  27. /*---------------------------------------------------------------------*
  28.  
  29. Name            _streams
  30.  
  31. Description     _streams is the array of FILE structures used by the
  32.                 stream handling functions.
  33.  
  34. *---------------------------------------------------------------------*/
  35.  
  36. #define _F_STDIN        (_F_READ | _F_TERM | _F_LBUF)
  37. #define _F_STDOUT       (_F_WRIT | _F_TERM | _F_LBUF)
  38. #define _F_STDERR       (_F_WRIT | _F_TERM)
  39.  
  40. FILE    _RTLENTRY _EXPDATA _streams [_NFILE_] =
  41. {
  42.         { NULL, NULL, 0, 0, 0, _F_STDIN,  0, 0, 0 },
  43.         { NULL, NULL, 0, 0, 0, _F_STDOUT, 0, 1, 0 },
  44.         { NULL, NULL, 0, 0, 0, _F_STDERR, 0, 2, 0 }
  45. };
  46.