MessageBeep läßt es knistern
-
Wenn man MessageBeep(-1) ganz schnell hintereinander, z.B. in einer Schleife ausführt, knistert es nur leise aus dem Lautsprecher.
for(int i = 0; i < 1000; ++i) { MessageBeep(-1); }
Warum wird das nicht so abgespielt, das erst wenn der Ton ausgeklangen ist, der nächste Ton gespielt wird?
-
Remarks
After queuing the sound, the MessageBeep function returns control to the calling function and plays the sound asynchronously.