[DllImport("aygshell.dll", SetLastError = true)]
static extern IntPtr SndPlaySync(string Path, uint Flags);
None.
Do you know one? Please contribute it!
Works with Windows Mobile 6.0 and later.
Flags indicates playback options. Use 0 for default behaviour.
string Path = @"\Storage Card\Pink Floyd - Have a cigar.mp3";
if (System.IO.File.Exists(Path))
{
IntPtr ip;
ip = SndPlaySync(Path, 0);
}