I want to play a .wav file in my application. I can play from file with no problem using:

PlaySound( "c:\\mysound.wav",NULL, SND_ASYNC|SND_FILENAME );

But, I don't want to distribute '.wav' files with my app. Any way to make the sounds part of my app, say as a resource?

Thanks,
GL Hovis