home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD2.img
/
d4xx
/
d424
/
med
/
programmers
/
examples
/
example1.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-12-29
|
402b
|
18 lines
/* This example just plays the song which is included when linking.
Compile with Lattice C 5.04 */
#include <exec/types.h>
#include <libraries/dos.h>
#include <proto/exec.h>
#include "med.h"
#include "modplayer.h"
extern struct MMD0 far song;
void main() /* this can be linked without c.o */
{
InitPlayer();
PlayModule(&song);
Wait(SIGBREAKF_CTRL_C); /* press Ctrl-C to quit */
RemPlayer();
}