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: 32437 $ 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 <BR>使用するにはあらかじめDevMenuで共有拡張セーブデータ領域を初期化しておく必要があります。 26 */ 27 28 #if defined(NN_PLATFORM_CTR) 29 30 #ifdef __cplusplus 31 //nakatat 32 // #include <nn/ugc/ubl_Api.h> 33 #include <nn/ubl/ubl_Api.h> 34 #endif // __cplusplus 35 #else //defined(NN_PLATFORM_CTR) 36 #error no platform selected 37 #endif 38 39 #endif /* NN_UBL_H_ */ 40