home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- FUNCTION Restsys
-
- PARAMETERS _whereto, _withadd
-
- _whereto = IF( TYPE("_whereto") != "C", "", _whereto)
- _withadd = IF( TYPE("_withadd") != "L", .T., _withadd)
-
- IF !EMPTY(_whereto)
- IF !VALID_PATH(_whereto)
- RETURN(.F.)
- ENDIF
- ENDIF
-
- PRIVATE _tfile
-
- _tfile = "Screen.sys"
-
- IF _withadd
- RESTORE FROM (_whereto + _tfile) ADDITIVE
- ELSE
- RESTORE FROM (_whereto + _tfile)
- ENDIF
-
- RETURN( DOSERROR()=0 )
-
- * End of File
-