Beispiel #1
0
 private static extern uint SndGetSound(SoundEvent seSoundEvent, ref SNDFILEINFO pSoundFileInfo);
Beispiel #2
0
 public static SoundType GetCurrentProfile()
 {
     SNDFILEINFO currentInfo = new SNDFILEINFO();
     uint ret = SndGetSound(SoundEvent.All, ref currentInfo);
     return currentInfo.SstType;
 }