Hi,
Just use the ShellExecute function, this way :
ShellExecute( NULL, "open", "c:\\mywavfile.wav", NULL, NULL, SW_NORMAL );
This will do exactly what windows does when you double-click a file.
You can replace "open" by "play", "enqueue" or...