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

  1. ********************
  2.  
  3. FUNCTION Loadkeys
  4.  
  5.    PRIVATE _thefile, _value
  6.  
  7.    _thefile = "HOTKEYS.SJS"
  8.  
  9.    IF !FILE(_thefile)
  10.       RETURN(.F.)
  11.    ENDIF
  12.  
  13.    PUBLIC setkeys[ADECLARE(_thefile)]
  14.    RETURN( RESTARRAY( setkeys, _thefile) )
  15.  
  16. * End of File
  17.  
  18.  
  19.