home *** CD-ROM | disk | FTP | other *** search
- /* This example just plays the song which is included when linking.
- Compile with Lattice/SAS C 5.xx */
-
- #include <exec/types.h>
- #include <libraries/dos.h>
- #include <proto/exec.h>
- #include "modplayer.h"
-
- extern struct MMD0 far song; /* The song must be saved under name "song". */
- void main() /* this can be linked without c.o (will run only from Shell/CLI) */
- {
- InitPlayer();
- PlayModule(&song);
- Wait(SIGBREAKF_CTRL_C); /* press Ctrl-C to quit */
- RemPlayer();
- }
-