1 /*---------------------------------------------------------------------------*
2   Project:  TwlSDK - SND - demos - capture
3   File:     fanfare.32.h
4 
5   Copyright 2007-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-09-18#$
14   $Rev: 8573 $
15   $Author: okubata_ryoma $
16  *---------------------------------------------------------------------------*/
17 #ifndef FANFARE_32_H_
18 #define FANFARE_32_H_
19 
20 #ifdef SDK_TWL
21 #include <twl.h>
22 #else
23 #include <nitro.h>
24 #endif
25 
26 #define FANFARE_32_FORMAT    SND_WAVE_FORMAT_PCM16
27 #define FANFARE_32_LOOPFLAG  0
28 #define FANFARE_32_RATE      32000
29 #define FANFARE_32_TIMER     523
30 #define FANFARE_32_LOOPSTART 0
31 #define FANFARE_32_LOOPLEN   56926
32 
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36 
37 const s16 fanfare_32[];
38 
39 #ifdef __cplusplus
40 }
41 #endif
42 
43 #endif // FANFARE_32_H_
44