1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     nn.h
4 
5   Copyright (C)2009-2012 Nintendo Co., Ltd.  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   $Rev: 46347 $
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef NN_H_
17 #define NN_H_
18 
19 /* Please see man pages for details
20 
21 
22 
23 
24 */
25 
26 
27 
28 /* Please see man pages for details
29 
30 
31 
32 
33 
34 
35 
36 
37 
38 
39 
40 
41 
42 */
43 #include <nn/config.h>
44 #include <nn/types.h>
45 #include <nn/assert.h>
46 
47 #include <nn/Result.h>
48 #include <nn/Handle.h>
49 
50 #include <nn/init.h>
51 #include <nn/dbg.h>
52 #include <nn/os.h>
53 #include <nn/util.h>
54 #include <nn/nstd.h>
55 
56 
57 #if     defined(NN_PLATFORM_CTR)
58     #if     defined(NN_SYSTEM_PROCESS)
59         #include <nn/fnd.h>
60         #include <nn/math.h>
61 
62         #if     defined(NN_PROCESSOR_ARM_V6)
63             #if     ! defined(NN_HARDWARE_CTR_LEGACY)
64                 #include <nn/camera.h>
65                 #include <nn/crypto.h>
66                 #include <nn/dsp.h>
67                 #include <nn/fs.h>
68                 #include <nn/gx.h>
69                 #include <nn/hid.h>
70                 #include <nn/mic.h>
71 
72                 #if defined(__cplusplus) && !defined(NN_H_NOT_INCLUDE_ALL)
73                     #include <nn/ro.h>
74 
75                     #include <nn/cx.h>
76                     #include <nn/jpeg.h>
77                     #include <nn/enc.h>
78 
79                     #include <nn/applet.h>
80                     #include <nn/ptm.h>
81                     #include <nn/pl.h>
82                     #include <nn/news.h>
83                     #include <nn/cfg.h>
84 
85                     #include <nn/hio.h>
86                     #include <nn/midi.h>
87 
88                     #include <nn/gd.h>
89                     #include <nn/gr.h>
90                     #include <nn/ulcd.h>
91                     #include <nn/tpl.h>
92                     #include <nn/font.h>
93 
94                     #include <nn/snd.h>
95 
96                     #include <nn/y2r.h>
97 
98                     #include <nn/uds.h>
99                     #include <nn/rdt.h>
100                     #include <nn/dlp.h>
101                     #include <nn/cec.h>
102                     #include <nn/boss.h>
103                     #include <nn/ac.h>
104                     #include <nn/ir.h>
105 
106                     #include <nn/ndm.h>
107                     #include <nn/friends.h>
108                     #include <nn/ngc.h>
109                     #include <nn/ubl.h>
110 
111                     #include <nn/erreula.h>
112                     #include <nn/swkbd.h>
113                     #include <nn/phtsel.h>
114                     #include <nn/voicesel.h>
115                     #include <nn/extrapad.h>
116 
117                     #include <nn/err.h>
118                     #include <nn/http_Initialize.h>
119                     #include <nn/socket_Initialize.h>
120                 #endif
121             #endif
122         #endif
123     #endif
124 #else
125     #error NN_PLATFORM_ not specified
126 #endif
127 
128 
129 #endif
130