home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a075 / 1.img / TOOLKIT1.EXE / SST98.PRG < prev    next >
Encoding:
Text File  |  1989-08-08  |  286 b   |  19 lines

  1. ********************
  2.  
  3. FUNCTION Rewind
  4.  
  5.    PARAMETERS _rhand
  6.  
  7.    IF EMPTY(PCOUNT())
  8.       RETURN(.F.)
  9.    ELSEIF TYPE("_rhand") != "N"
  10.       RETURN(.F.)
  11.    ENDIF
  12.  
  13.    * _rhand is the DOS file handle you want to rewind!
  14.  
  15.    FSEEK(_rhand, 0)
  16.    RETURN(.T.)
  17.  
  18. * End of File
  19.