home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / modu1096.zip / ISOsym / srawio.def < prev    next >
Text File  |  1996-08-29  |  568b  |  20 lines

  1. DEFINITION MODULE SRawIO;
  2.  
  3. (* Reading and writing data over default channels using raw operations,
  4.    that is, with no conversion or interpretation. The read result is of
  5.    the type IOConsts.ReadResults.
  6. *)
  7.  
  8. FROM SYSTEM IMPORT LOC;
  9.  
  10.  
  11. PROCEDURE Read (VAR to : ARRAY OF LOC);
  12. (* Reads storage units and assigns to successive components of the
  13.    parameter to.
  14.    The read result is set to the value allRight, wrongFormat, or endOfInput *)
  15.  
  16. PROCEDURE Write (from  : ARRAY OF LOC);
  17. (* Writes storage units from successive components of the parameter from *)
  18.  
  19. END SRawIO.
  20.