sail3005
Sep 21st, 2001, 08:47 PM
Hey, my friend and I (Wynd) are creating a simple c++ media player. We are starting out very small but we might add a GUI in the future. For now, i'll post and update the code in the first post. Thats about it for now.
// Play Wonderful Sounds
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
PlaySound("c:\\msft.wav" ,NULL,SND_FILENAME | SND_ASYNC);
return 0;
}
// Play Wonderful Sounds
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
PlaySound("c:\\msft.wav" ,NULL,SND_FILENAME | SND_ASYNC);
return 0;
}