home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / PP0705.ZIP / FIGURE2 next >
Text File  |  1988-03-15  |  321b  |  14 lines

  1. BytesRead = read(Handle,SmallBuffer,32);
  2.  
  3. while (BytesRead > 0)
  4.     {
  5.     if (kbhit ())
  6.         {
  7.             getch () ;        /* get "suspend" key */
  8.             getch () ;        /* get "resume" key  */
  9.         }
  10.     write (1, SmallBuffer, BytesRead) ;
  11.  
  12.     BytesRead = read(Handle,SmallBuffer,32);
  13.     }
  14.