revert between 56095 -> 55830 in arch
[AROS.git] / workbench / devs / AHI / Drivers / SB128 / accel.c
blobc7e51ac5021135087ca8ed7ec9081a49f695e3ae
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 <aros/debug.h>
20 #include <devices/ahi.h>
21 #include <libraries/ahi_sub.h>
23 #include "library.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 D(bug("[SB128]: %s()\n", __PRETTY_FUNCTION__));
39 return AHIS_UNKNOWN;
43 /******************************************************************************
44 ** AHIsub_SetFreq *************************************************************
45 ******************************************************************************/
47 ULONG
48 _AHIsub_SetFreq( UWORD channel,
49 ULONG freq,
50 struct AHIAudioCtrlDrv* AudioCtrl,
51 ULONG flags,
52 struct DriverBase* AHIsubBase )
54 D(bug("[SB128]: %s()\n", __PRETTY_FUNCTION__));
56 return AHIS_UNKNOWN;
60 /******************************************************************************
61 ** AHIsub_SetSound ************************************************************
62 ******************************************************************************/
64 ULONG
65 _AHIsub_SetSound( UWORD channel,
66 UWORD sound,
67 ULONG offset,
68 LONG length,
69 struct AHIAudioCtrlDrv* AudioCtrl,
70 ULONG flags,
71 struct DriverBase* AHIsubBase )
73 D(bug("[SB128]: %s()\n", __PRETTY_FUNCTION__));
75 return AHIS_UNKNOWN;
79 /******************************************************************************
80 ** AHIsub_SetEffect ***********************************************************
81 ******************************************************************************/
83 ULONG
84 _AHIsub_SetEffect( APTR effect,
85 struct AHIAudioCtrlDrv* AudioCtrl,
86 struct DriverBase* AHIsubBase )
88 D(bug("[SB128]: %s()\n", __PRETTY_FUNCTION__));
90 return AHIS_UNKNOWN;
94 /******************************************************************************
95 ** AHIsub_LoadSound ***********************************************************
96 ******************************************************************************/
98 ULONG
99 _AHIsub_LoadSound( UWORD sound,
100 ULONG type,
101 APTR info,
102 struct AHIAudioCtrlDrv* AudioCtrl,
103 struct DriverBase* AHIsubBase )
105 D(bug("[SB128]: %s()\n", __PRETTY_FUNCTION__));
107 return AHIS_UNKNOWN;
111 /******************************************************************************
112 ** AHIsub_UnloadSound *********************************************************
113 ******************************************************************************/
115 ULONG
116 _AHIsub_UnloadSound( UWORD sound,
117 struct AHIAudioCtrlDrv* AudioCtrl,
118 struct DriverBase* AHIsubBase )
120 D(bug("[SB128]: %s()\n", __PRETTY_FUNCTION__));
122 return AHIS_UNKNOWN;