brintos

brintos / linux-shallow public Read only

0
0
Text · 2.7 KiB · ebc206b Raw
77 lines · c
1/*2*3* smapi.h -- declarations for SMAPI interface routines4*5*6* Written By: Mike Sullivan IBM Corporation7*8* Copyright (C) 1999 IBM Corporation9*10* This program is free software; you can redistribute it and/or modify11* it under the terms of the GNU General Public License as published by12* the Free Software Foundation; either version 2 of the License, or13* (at your option) any later version.14*15* This program is distributed in the hope that it will be useful,16* but WITHOUT ANY WARRANTY; without even the implied warranty of17* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the18* GNU General Public License for more details.19*20* NO WARRANTY21* THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR22* CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT23* LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,24* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is25* solely responsible for determining the appropriateness of using and26* distributing the Program and assumes all risks associated with its27* exercise of rights under this Agreement, including but not limited to28* the risks and costs of program errors, damage to or loss of data,29* programs or equipment, and unavailability or interruption of operations.30*31* DISCLAIMER OF LIABILITY32* NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY33* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL34* DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND35* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR36* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE37* USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED38* HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES39*40* You should have received a copy of the GNU General Public License41* along with this program; if not, write to the Free Software42* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA43*44*45* 10/23/2000 - Alpha Release46*	First release to the public47*/48 49#ifndef _LINUX_SMAPI_H50#define _LINUX_SMAPI_H51 52typedef struct {53	int bDSPPresent;54	int bDSPEnabled;55	int bModemEnabled;56	int bMIDIEnabled;57	int bSblstEnabled;58	unsigned short usDspIRQ;59	unsigned short usDspDMA;60	unsigned short usDspBaseIO;61	unsigned short usUartIRQ;62	unsigned short usUartBaseIO;63	unsigned short usMidiIRQ;64	unsigned short usMidiBaseIO;65	unsigned short usSndblstIRQ;66	unsigned short usSndblstDMA;67	unsigned short usSndblstBaseIO;68} SMAPI_DSP_SETTINGS;69 70int smapi_init(void);71int smapi_query_DSP_cfg(SMAPI_DSP_SETTINGS * pSettings);72int smapi_set_DSP_cfg(void);73int smapi_set_DSP_power_state(bool bOn);74 75 76#endif77