home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 5.ddi / MWHC.005 / 53 < prev    next >
Encoding:
Text File  |  1992-12-09  |  450 b   |  14 lines

  1. { (C) Copyright  1986-1992 MetaWare Incorporated;  Santa Cruz, CA 95060. }
  2.  
  3. package Fileh_type type File_handle;
  4.    const
  5.       MAX_FILES = 255;  -- We store a byte in our internal tables.
  6.    type
  7.       File_handle = Int;   {DOS file handle, as returned from OPEN}
  8.    const
  9.       Null_file_handle = File_handle(-1);
  10.       System_stdin = File_handle(0);
  11.       System_stdout = File_handle(1);
  12.       System_stderr = File_handle(2);
  13.    end;
  14.