1 /*---------------------------------------------------------------------------*
2   Project:  Mixer application for AX
3   File:     mixprivate.h
4 
5   Copyright (C)2006 Nintendo  All Rights Reserved.
6 
7   These coded instructions, statements, and computer programs contain
8   proprietary information of Nintendo of America Inc. and/or Nintendo
9   Company Ltd., and are protected by Federal copyright law.  They may
10   not be disclosed to third parties or copied or duplicated in any form,
11   in whole or in part, without the prior written consent of Nintendo.
12 
13   $Log: mixprivate.h,v $
14   Revision 1.2  07/24/2006 09:09:17  aka
15   Added __MIXRmtResetChannel().
16 
17   Revision 1.1  07/19/2006 07:53:38  aka
18   Initial check-in.
19 
20   $NoKeywords: $
21  *---------------------------------------------------------------------------*/
22 
23 #ifndef __MIXPRIVATE_H__
24 #define __MIXPRIVATE_H__
25 
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29 
30 u16  __MIXGetVolume         (int db_);
31 void __MIXRmtUpdateSettings (s32 chan, AXVPB *axvpb);
32 void __MIXRmtResetChannel   (s32 chan);
33 
34 #ifdef __cplusplus
35 }
36 #endif
37 
38 #endif // __MIXPRIVATE_H__
39