sgsmixvar.h revision 1.3
11.3Srin/* $NetBSD: sgsmixvar.h,v 1.3 2020/04/16 21:56:42 rin 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 * 151.1Smacallan * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 161.1Smacallan * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 171.1Smacallan * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 181.1Smacallan * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 191.1Smacallan * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 201.1Smacallan * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 211.1Smacallan * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 221.1Smacallan * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 231.1Smacallan * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 241.1Smacallan * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 251.1Smacallan */ 261.1Smacallan#ifndef SGSMIXVAR_H 271.1Smacallan#define SGSMIXVAR_H 281.1Smacallan 291.1Smacallanvoid sgsmix_set_speaker_vol(void *, int, int); 301.1Smacallanvoid sgsmix_set_headphone_vol(void *, int, int); 311.1Smacallanvoid sgsmix_set_bass_treble(void *, int, int); 321.1Smacallan 331.1Smacallan#endif 34