sgsmixvar.h revision 1.1
11.1Smacallan/* $NetBSD: sgsmixvar.h,v 1.1 2007/01/17 23:32:10 macallan Exp $ */ 21.1Smacallan 31.1Smacallan/*- 41.1Smacallan * Copyright (C) 2005 Michael Lorenz. 51.1Smacallan * 61.1Smacallan * Redistribution and use in source and binary forms, with or without 71.1Smacallan * modification, are permitted provided that the following conditions 81.1Smacallan * are met: 91.1Smacallan * 1. Redistributions of source code must retain the above copyright 101.1Smacallan * notice, this list of conditions and the following disclaimer. 111.1Smacallan * 2. Redistributions in binary form must reproduce the above copyright 121.1Smacallan * notice, this list of conditions and the following disclaimer in the 131.1Smacallan * documentation and/or other materials provided with the distribution. 141.1Smacallan * 3. The name of the author may not be used to endorse or promote products 151.1Smacallan * derived from this software without specific prior written permission. 161.1Smacallan * 171.1Smacallan * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 181.1Smacallan * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 191.1Smacallan * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 201.1Smacallan * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 211.1Smacallan * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 221.1Smacallan * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 231.1Smacallan * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 241.1Smacallan * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 251.1Smacallan * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 261.1Smacallan * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 271.1Smacallan */ 281.1Smacallan#ifndef SGSMIXVAR_H 291.1Smacallan#define SGSMIXVAR_H 301.1Smacallan 311.1Smacallan#include <sys/cdefs.h> 321.1Smacallan__KERNEL_RCSID(0, "$NetBSD: sgsmixvar.h,v 1.1 2007/01/17 23:32:10 macallan Exp $"); 331.1Smacallan 341.1Smacallanvoid sgsmix_set_speaker_vol(void *, int, int); 351.1Smacallanvoid sgsmix_set_headphone_vol(void *, int, int); 361.1Smacallanvoid sgsmix_set_bass_treble(void *, int, int); 371.1Smacallan 381.1Smacallan#endif 39