/*---------------------------------------------------------------------------*
Project: Horizon
File: cfg.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.
$Rev: 20158 $
*---------------------------------------------------------------------------*/
#ifndef NN_CFG_H_
#define NN_CFG_H_
/*! @namespace nn::cfg
@brief 本体設定 API の名前空間です。
*/
/*!
@namespace nn::cfg::CTR
@brief 本体設定 API の名前空間です。
("::CTR"" の部分は省略して記述可能です。)
nn::cfg 名前空間の本体設定取得 API を呼ぶ前に、あらかじめ nn::cfg::Initialize 関数を呼び出しておく必要があります。
*/
#if defined(NN_PLATFORM_CTR)
#ifdef __cplusplus
#include
#include
namespace nn {
namespace cfg {
using namespace nn::cfg::CTR;
}
}
#endif
#else
#error no platform selected
#endif
/*!
@defgroup nn_cfg cfg
@brief 本体設定のマクロです。
@{
*/
/*!
@}
*/
#endif // ifndef NN_CFG_H_