1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     pl.h
4 
5   Copyright (C)2009 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: 25112 $
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef NN_PL_H_
17 #define NN_PL_H_
18 
19 #if defined(NN_PLATFORM_CTR)
20     #include <nn/pl/CTR/pl_Api.h>
21     #include <nn/pl/CTR/pl_SharedFont.h>
22 
23 /*!
24     @namespace  nn::pl
25     @brief      プラットフォーム固有の API の名前空間
26 */
27 
28 /*!
29     @namespace  nn::pl::CTR
30     @brief      CTR 固有の API の名前空間
31 
32     ("::CTR" の部分は省略して記述可能です。)
33 */
34 
35     #ifdef  __cplusplus
36     #include <nn/pl/CTR/pl_Api.h>
37     #include <nn/pl/CTR/pl_SharedFont.h>
38 
39     namespace nn { namespace pl {
40         using namespace nn::pl::CTR;
41     }}
42     #endif
43 #else
44     #error no platform selected
45 #endif
46 
47 #endif  // ifndef NN_PL_H_
48