home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMOS PD CD
/
amospdcd.iso
/
sourcecode
/
various
/
savepref.amos
/
savepref.amosSourceCode
Wrap
AMOS Source Code
|
1993-01-08
|
484b
|
15 lines
'* �1992 by Volker Stepprath *
'* Saves the systemconfiguration in a file on disk *
'**** Install buffer ****
BUFFER$=Space$(232)+Chr$(0)
'**** Get configuration set by preferences ****
Areg(0)=Varptr(BUFFER$)
Dreg(0)=233
XGETPREF=Intcall(-132)
'**** Choose file ****
FILE$=Fsel$("","","Please choose file","to save the preferencesdatas !")
If FILE$<>""
'**** Save datas of systemconfiguration ****
Bsave FILE$,XGETPREF To XGETPREF+232
End If
Edit