Beep function kernel32

int Beep(
  1. int dwFreq,
  2. int dwDuration
)

Generates simple tones on the speaker. The function is synchronous; it performs an alertable wait and does not return control to its caller until the sound finishes.

BOOL Beep(
  DWORD dwFreq,
  DWORD dwDuration
);

Implementation

int Beep(int dwFreq, int dwDuration) => _Beep(dwFreq, dwDuration);