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

  1. DEFINITION MODULE IOConsts;
  2.  
  3. (* Types and constants for input/output modules *)
  4.  
  5. TYPE    (* This type is used to classify the result of an input operation: *)
  6.   ReadResults = (
  7.         notKnown,         (* no read result is set *)
  8.         allRight,         (* data is as expected or as required *)
  9.         outOfRange,       (* data cannot be represented *)
  10.         wrongFormat,      (* data not in expected format *)
  11.         endOfLine,        (* end of line seen befopre expected data *)
  12.         endOfInput        (* end of input seen before expected data *)
  13.   );
  14.  
  15. END IOConsts.
  16.  
  17.