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 >
C/C++ Source or Header  |  1991-05-08  |  468b  |  17 lines

  1. /* This example just plays the song which is included when linking.
  2.    Compile with Lattice/SAS C 5.xx */
  3.  
  4. #include <exec/types.h>
  5. #include <libraries/dos.h>
  6. #include <proto/exec.h>
  7. #include "modplayer.h"
  8.  
  9. extern struct MMD0 far song; /* The song must be saved under name "song". */
  10. void main() /* this can be linked without c.o (will run only from Shell/CLI) */
  11. {
  12.     InitPlayer();
  13.     PlayModule(&song);
  14.     Wait(SIGBREAKF_CTRL_C); /* press Ctrl-C to quit */
  15.     RemPlayer();
  16. }
  17.