1 /*---------------------------------------------------------------------------* 2 Project: Horizon 3 File: ubl.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: 31550 $ 14 *---------------------------------------------------------------------------*/ 15 16 #ifndef NN_UBL_H_ 17 #define NN_UBL_H_ 18 19 /*! @namespace nn::ubl 20 @brief ブラックリストのためのライブラリです。 21 <BR>ブラックリストを書き込むAPIはアプリプロセスのみ使用できます。 22 <BR>他のプロセス(デーモン)からの使用は禁止されています。 23 24 <BR>ブラックリストを読み込むAPIはどのプロセスも使用できます。 25 26 <BR>現在、使用するにはSDカードを差しておく必要がありますが 27 <BR>将来不要となる予定です。 28 */ 29 30 #if defined(NN_PLATFORM_CTR) 31 32 #ifdef __cplusplus 33 //nakatat 34 // #include <nn/ugc/ubl_Api.h> 35 #include <nn/ubl/ubl_Api.h> 36 #endif // __cplusplus 37 #else //defined(NN_PLATFORM_CTR) 38 #error no platform selected 39 #endif 40 41 #endif /* NN_UBL_H_ */ 42