home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD2.img
/
d4xx
/
d483
/
med
/
med.lzh
/
MED
/
Programmers
/
Examples
/
example1.c
< prev
next >
Wrap
C/C++ Source or Header
|
1991-05-08
|
468b
|
17 lines
/* 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();
}