blob: 81ed82d184cd5b601258cdbb2b85afa0d21645a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/***********************************************************************/
/* */
/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 1996 Institut National de Recherche en Informatique et */
/* en Automatique. All rights reserved. This file is distributed */
/* under the terms of the GNU Library General Public License. */
/* */
/***********************************************************************/
/* $Id$ */
#include "libgraph.h"
value gr_sound(value vfreq, value vdur)
{
XKeyboardControl kbdcontrol;
gr_check_open();
kbdcontrol.bell_pitch = Int_val(vfreq);
kbdcontrol.bell_duration = Int_val(vdur);
XChangeKeyboardControl(grdisplay, KBBellPitch | KBBellDuration,
&kbdcontrol);
XBell(grdisplay, 0);
kbdcontrol.bell_pitch = -1; /* restore default value */
kbdcontrol.bell_duration = -1; /* restore default value */
XChangeKeyboardControl(grdisplay, KBBellPitch | KBBellDuration,
&kbdcontrol);
XFlush(grdisplay);
return Val_unit;
}
|