home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / FGL110C.ZIP / 13-08.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-31  |  386 b   |  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.