home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / PROGRAMM / FGL112C.ZIP / 13-08.C < prev    next >
Text File  |  1992-10-05  |  386b  |  20 lines

  1. #include <fastgraf.h>
  2. #include <stdio.h>
  3.  
  4. void main(void);
  5.  
  6. void main()
  7. {
  8.    fg_musicb("T150 L8 EDCDEEE P DDD P EGG P EDCDEEE L16 P L8 EDDEDC$",1);
  9.    fg_waitkey();
  10.  
  11.    fg_suspend();
  12.    printf("Music suspended.  Press any key to resume.\n");
  13.    fg_waitkey();
  14.  
  15.    fg_resume();
  16.    printf("Music resumed.\n");
  17.    while (fg_playing());
  18.    printf("Music finished.\n");
  19. }
  20.