|
[DllImport("coredll.dll",
CallingConvention = CallingConvention.Winapi,
CharSet = CharSet.Unicode,
EntryPoint = "PlaySound",
PreserveSig = true,
SetLastError = false)]
private extern static bool PlaySound(
String pszSound,
IntPtr hmod,
UInt32 fdwSound); |
|