home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-387-Vol-3of3.iso
/
l
/
l-coll1.zip
/
STREPLAY.ZOO
/
STReplay
/
Basic
/
libdemo.bas
(
.txt
)
< prev
next >
Wrap
AmigaBASIC Source Code
|
1989-11-29
|
661b
|
32 lines
LIBRARY "streplay.library"
DECLARE FUNCTION IsRunning& LIBRARY
DECLARE FUNCTION IsModule& LIBRARY
DECLARE FUNCTION LoadModule& LIBRARY
PRINT "Dies ist eine Demonstration der 'STReplay.Library'"
PRINT
PRINT " von Olli, dem Groessten"
PRINT
PRINT "Laden wir mal das Modul 'libdemo.stmod'"
modname$="libdemo.stmod"+CHR$(0)
le& = LoadModule&(SADD(modname$))
IF le&<>0 THEN
PRINT "Lade-Fehler!"
END
END IF
PRINT "Lassen wir es laufen..."
CALL StartSong
PRINT
PRINT "(Drⁿcke doch mal eine Taste oder so)"
PRINT
WHILE INKEY$="":WEND
PRINT "...und stoppen wir es wieder!"
PRINT
CALL StopSong
PRINT "Genial, oder?"
CALL UnloadModule
LIBRARY CLOSE