+ 1
How to make a simple music program?
please help us
3 Answers
+ 2
that's is not working program
+ 1
if you use code blocks 
goto setting  -> compiler -> linker setting  -- then  on the right box write -lwinmm
in your cpp program
#include <Mmsystem.h>
 #include <mciapi.h> 
//these two headers are already included in the <Windows.h> header 
To open *.mp3:
mciSendString("open \"*.mp3\" type mpegvideo alias mp3", NULL, 0, NULL); 
To play *.mp3:
mciSendString("play mp3", NULL, 0, NULL); 
To play and wait until the *.mp3 has finished playing:
mciSendString("play mp3 wait", NULL, 0, NULL); 
To replay (play again from start) the *.mp3:
mciSendString("play mp3 from 0", NULL, 0, NULL); 
To replay and wait until the *.mp3 has finished playing:
mciSendString("play mp3 from 0 wait", NULL, 0, NULL); 
To play the *.mp3 and replay it every time it ends like a loop:
mciSendString("play mp3 repeat", NULL, 0, NULL);



