Waldemar Schultz escribió:
Is there a possibility to generate some kind of sound or beep from within a MINGW/GRX Win32 program ? Thanks for any pointers.
If you only want a beep you can use the Beep function (from the Win32 API):
BOOL Beep(
DWORD dwFreq, // sound frequency, in hertz DWORD dwDuration // sound duration, in milliseconds );
but note it works on NT, W9x ignores the parameter and sounds the default beep.