home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Audio 4.94 - Over 11,000 Files
/
audio-11000.iso
/
amiga
/
midi
/
med210.lhw
/
in.adf
/
Programmers
/
Examples
/
example1.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-02-07
|
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();
}