1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Objective Caml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-08 10:04:35 -07:00
|
|
|
#include "libgraph.h"
|
|
|
|
|
2004-03-24 07:02:06 -08:00
|
|
|
value caml_gr_sound(value vfreq, value vdur)
|
1995-05-08 10:04:35 -07:00
|
|
|
{
|
|
|
|
XKeyboardControl kbdcontrol;
|
|
|
|
|
2004-03-24 07:02:06 -08:00
|
|
|
caml_gr_check_open();
|
1995-05-08 10:04:35 -07:00
|
|
|
kbdcontrol.bell_pitch = Int_val(vfreq);
|
|
|
|
kbdcontrol.bell_duration = Int_val(vdur);
|
2004-03-24 07:02:06 -08:00
|
|
|
XChangeKeyboardControl(caml_gr_display, KBBellPitch | KBBellDuration,
|
1995-05-08 10:04:35 -07:00
|
|
|
&kbdcontrol);
|
2004-03-24 07:02:06 -08:00
|
|
|
XBell(caml_gr_display, 0);
|
1995-05-08 10:04:35 -07:00
|
|
|
kbdcontrol.bell_pitch = -1; /* restore default value */
|
|
|
|
kbdcontrol.bell_duration = -1; /* restore default value */
|
2004-03-24 07:02:06 -08:00
|
|
|
XChangeKeyboardControl(caml_gr_display, KBBellPitch | KBBellDuration,
|
1995-05-08 10:04:35 -07:00
|
|
|
&kbdcontrol);
|
2004-03-24 07:02:06 -08:00
|
|
|
XFlush(caml_gr_display);
|
1995-05-08 10:04:35 -07:00
|
|
|
return Val_unit;
|
|
|
|
}
|