/*---------------------------------------------------------------------------* Project: Horizon File: dlp_Common.h Copyright (C)2009 Nintendo Co., Ltd. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. *---------------------------------------------------------------------------*/ #ifndef NN_DLP_CTR_DLP_COMMON_H_ #define NN_DLP_CTR_DLP_COMMON_H_ #include #ifdef __cplusplus namespace nn { namespace dlp { namespace CTR { /*!--------------------------------------------------------------------------* @name DLP 全体で共通して使用される API 定義 @{ *---------------------------------------------------------------------------*/ /*!--------------------------------------------------------------------------* @brief リブート後にネットワーク接続を行うための情報を取得します。 本 API は、初期化関数を使用せず、そのまま使用できます。 @param[out] pRebootInfo ネットワーク接続に必要な情報が返されます。 @return 処理の結果が返ってきます。 *--------------------------------------------------------------------------*/ nn::Result GetRebootInfo(RebootInfo* pRebootInfo); /*!--------------------------------------------------------------------------* @} *---------------------------------------------------------------------------*/ } // namespace CTR } // namespace dlp } // namespace nn #endif // __cplusplus #endif // ifndef NN_DLP_CTR_DLP_COMMON_H_