1 /*---------------------------------------------------------------------------* 2 Project: TwlSDK - include 3 File: snd.h 4 5 Copyright 2008 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 $Date:: 2008-02-06#$ 14 $Rev: 4051 $ 15 $Author: terui $ 16 *---------------------------------------------------------------------------*/ 17 18 #ifndef TWL_SND_H_ 19 #define TWL_SND_H_ 20 #ifdef __cplusplus 21 extern "C" { 22 #endif 23 /*---------------------------------------------------------------------------*/ 24 25 #include <nitro/snd.h> 26 #include <twl/snd/common/sndex_common.h> 27 28 #ifdef SDK_ARM9 29 #include <twl/snd/ARM9/sndex.h> 30 #else // SDK_ARM7 31 #include <twl/snd/ARM7/sndex_api.h> 32 #endif 33 34 /*---------------------------------------------------------------------------*/ 35 #ifdef __cplusplus 36 } // extern "C" 37 #endif 38 #endif // TWL_SND_H_ 39