Home | History | Annotate | Line # | Download | only in audio
      1  1.2  isaki /*	$NetBSD: audiobellvar.h,v 1.2 2019/05/08 13:40:17 isaki Exp $	*/
      2  1.2  isaki 
      3  1.2  isaki /*-
      4  1.2  isaki  * Copyright (c) 2004 Ben Harris
      5  1.2  isaki  * All rights reserved.
      6  1.2  isaki  *
      7  1.2  isaki  * Redistribution and use in source and binary forms, with or without
      8  1.2  isaki  * modification, are permitted provided that the following conditions
      9  1.2  isaki  * are met:
     10  1.2  isaki  * 1. Redistributions of source code must retain the above copyright
     11  1.2  isaki  *    notice, this list of conditions and the following disclaimer.
     12  1.2  isaki  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.2  isaki  *    notice, this list of conditions and the following disclaimer in the
     14  1.2  isaki  *    documentation and/or other materials provided with the distribution.
     15  1.2  isaki  * 3. The name of the author may not be used to endorse or promote products
     16  1.2  isaki  *    derived from this software without specific prior written permission.
     17  1.2  isaki  *
     18  1.2  isaki  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19  1.2  isaki  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20  1.2  isaki  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21  1.2  isaki  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22  1.2  isaki  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     23  1.2  isaki  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     24  1.2  isaki  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     25  1.2  isaki  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     26  1.2  isaki  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     27  1.2  isaki  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28  1.2  isaki  */
     29  1.2  isaki 
     30  1.2  isaki /*
     31  1.2  isaki  * To make a noise, call audiobell(dev, pitch, period, volume, poll).
     32  1.2  isaki  * dev is a device_t for the audio device to use.
     33  1.2  isaki  * pitch is the pitch of the bell in Hz,
     34  1.2  isaki  * period is the length in ms,
     35  1.2  isaki  * volume is the amplitude in % of max,
     36  1.2  isaki  * poll is TRUE if we may not block or use interrupts.
     37  1.2  isaki  *
     38  1.2  isaki  * This function is designed to be passed to pckbd_hookup_bell() and
     39  1.2  isaki  * equivalents.
     40  1.2  isaki  */
     41  1.2  isaki void audiobell(void *, u_int, u_int, u_int, int);
     42