bcpl: Fill in some missing functions, discovered from L:Shell-Seg from KS 1.3
[AROS.git] / workbench / devs / AHI / Drivers / SB128 / SB128 / accel.c
blob58c7d3446668eae098bfe1a1b3f380411a4fc614
1 /*
3 The contents of this file are subject to the AROS Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
4 http://www.aros.org/license.html
6 Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
7 ANY KIND, either express or implied. See the License for the specific language governing rights and
8 limitations under the License.
10 The Original Code is (C) Copyright 2004-2011 Ross Vumbaca.
12 The Initial Developer of the Original Code is Ross Vumbaca.
14 All Rights Reserved.
18 #include <config.h>
20 #include <devices/ahi.h>
21 #include <libraries/ahi_sub.h>
23 #include "library_card.h"
25 /******************************************************************************
26 ** AHIsub_SetVol **************************************************************
27 ******************************************************************************/
29 ULONG
30 _AHIsub_SetVol( UWORD channel,
31 Fixed volume,
32 sposition pan,
33 struct AHIAudioCtrlDrv* AudioCtrl,
34 ULONG flags,
35 struct DriverBase* AHIsubBase )
37 return AHIS_UNKNOWN;
41 /******************************************************************************
42 ** AHIsub_SetFreq *************************************************************
43 ******************************************************************************/
45 ULONG
46 _AHIsub_SetFreq( UWORD channel,
47 ULONG freq,
48 struct AHIAudioCtrlDrv* AudioCtrl,
49 ULONG flags,
50 struct DriverBase* AHIsubBase )
52 return AHIS_UNKNOWN;
56 /******************************************************************************
57 ** AHIsub_SetSound ************************************************************
58 ******************************************************************************/
60 ULONG
61 _AHIsub_SetSound( UWORD channel,
62 UWORD sound,
63 ULONG offset,
64 LONG length,
65 struct AHIAudioCtrlDrv* AudioCtrl,
66 ULONG flags,
67 struct DriverBase* AHIsubBase )
69 return AHIS_UNKNOWN;
73 /******************************************************************************
74 ** AHIsub_SetEffect ***********************************************************
75 ******************************************************************************/
77 ULONG
78 _AHIsub_SetEffect( APTR effect,
79 struct AHIAudioCtrlDrv* AudioCtrl,
80 struct DriverBase* AHIsubBase )
82 return AHIS_UNKNOWN;
86 /******************************************************************************
87 ** AHIsub_LoadSound ***********************************************************
88 ******************************************************************************/
90 ULONG
91 _AHIsub_LoadSound( UWORD sound,
92 ULONG type,
93 APTR info,
94 struct AHIAudioCtrlDrv* AudioCtrl,
95 struct DriverBase* AHIsubBase )
97 return AHIS_UNKNOWN;
101 /******************************************************************************
102 ** AHIsub_UnloadSound *********************************************************
103 ******************************************************************************/
105 ULONG
106 _AHIsub_UnloadSound( UWORD sound,
107 struct AHIAudioCtrlDrv* AudioCtrl,
108 struct DriverBase* AHIsubBase )
110 return AHIS_UNKNOWN;