How do you set kAudioServicesPropertyIsUISound to 0 using AudioServicesSetProperty? Thanks
views:
170answers:
1
A:
Assuming your SystemSoundID object is "systemSoundID"
UInt32 flag = 0;
err = AudioServicesSetProperty(kAudioServicesPropertyIsUISound,
sizeof(UInt32),
&systemSoundID,
sizeof(UInt32),
&flag);
mmc
2009-04-11 03:05:32