curs_beep(3x) curs_beep(3x)
beep, flash - curses bell and screen flash routines - curses ベルと画面点滅ルーチン
#include <curses.h> int beep(void); int flash(void);
The beep and flash routines are used to alert the terminal user. The routine beep sounds an audible alarm on the terminal, if possible; otherwise it flashes the screen (visible bell). The routine flash flashes the screen, and if that is not possible, sounds the alert. If neither alert is possible, nothing happens. Nearly all terminals have an audible alert (bell or beep), but only some can flash the screen. beep と flash ルーチンは、端末ユーザに警報を出すために 使います。 beep ルーチンは可能であれば端末で音として聞こえる警報を 鳴らします。不可能ならば画面を点滅 (フラッシュ) させます (視覚的ベル)。 flash ルーチンは画面を点滅させます。不可能であれば警報音を 鳴らします。 どちらの警報もできなければ、何も起こりません。 ほとんどすべての端末は、聞こえる警報音 (ベルかブザ) を 持っていますが、画面を点滅できるのは一部の端末だけにすぎません。
These routines return OK if they succeed in beeping or flashing, ERR otherwise. これらのルーチンは、警報音または画面の点滅に成功すると OK を、そうでなければ ERR を返します。
SVr4's beep and flash routines always returned OK, so it was not possible to tell when the beep or flash failed. SVr4 の beep と flash ルーチンは常に OK を返しました。 そのため、警報音または画面の点滅が失敗した場合に 通知できませんでした。
These functions are described in the XSI Curses standard, Issue 4. Like SVr4, it specifies that they always return OK. XSI Curses standard, Issue 4 はこれらの関数を記載しており、 SVr4 と同様に、これらは常に OK を返すと指定しています。
curses(3x) curs_beep(3x)