/*---------------------------------------------------------------------------* Project: Horizon File: pl_Api.h Copyright (C)2010 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: 25126 $ *---------------------------------------------------------------------------*/ #ifndef NN_PL_CTR_PL_API_H_ #define NN_PL_CTR_PL_API_H_ #include #include #include namespace nn { namespace pl { namespace CTR { /*! @name 初期化 / 終了処理 @{ */ namespace detail { namespace { const char PORT_NAME_USER[] = "ns:u"; } } /*! @brief 初期化を行います。 */ void Initialize(void); /*! @brief 終了処理を行います。 */ void Finalize(void); /*! @} */ } // end of namespace CTR } // end of namespace ns } // end of namespace nn #endif // ifndef NN_PL_CTR_PL_API_H_