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.

Code:
// Play Wonderful Sounds

#include <iostream>
#include <windows.h>

using namespace std;

int main()

{

PlaySound("c:\\msft.wav" ,NULL,SND_FILENAME | SND_ASYNC);
		return 0;

}