/*---------------------------------------------------------------------------*
Project: Horizon
File: ngc.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: 26069 $
*---------------------------------------------------------------------------*/
#ifndef NN_NGC_H_
#define NN_NGC_H_
/*!
@brief チェックする一単語の最大文字数(NULL終端文字を含む)です。
この値は文字数を表します。
バイト数に変換するにはsizeof( wchar_t )をかけてください。
*/
#define NN_NGC_MAX_WORD_LENGTH 64
/*!
@brief 一度にチェック可能な単語の最大数です。
*/
#define NN_NGC_MAX_WORD_NUM 16
/*!
@namespace nn::ngc
@brief 不正文字列チェック(プロファニティフィルタ)のためのライブラリです。
*/
/*!
@namespace nn::ngc::CTR
@brief CTR用の、不正文字列チェック(プロファニティフィルタ)のためのライブラリです。
("::CTR" の部分は省略して記述可能です。)
*/
#if defined( NN_PLATFORM_CTR ) && defined( __cplusplus )
# include
# include
# include
# include
namespace nn
{
namespace ngc
{
using namespace nn::ngc::CTR;
}
}
#else
# error unknown platform
#endif
#endif // NN_NGC_H_