SndPlaySync (aygshell)
Last changed: Henrik Bach-194.255.15.106

.
Summary

C# Signature:

    [DllImport("aygshell.dll", SetLastError = true)]
    static extern IntPtr SndPlaySync(string Path, uint Flags);

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

Works with Windows Mobile 6.0 and later.

Flags indicates playback options. Use 0 for default behaviour.

Tips & Tricks:

Sample Code:

    string Path = @"\Storage Card\Pink Floyd - Have a cigar.mp3";
    if (System.IO.File.Exists(Path))
    {
        IntPtr ip;
        ip = SndPlaySync(Path, 0);
    }

Documentation
SndPlaySync on MSDN