/*---------------------------------------------------------------------------* Project: Horizon File: pl_Result.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: 30987 $ *---------------------------------------------------------------------------*/ #ifndef NN_PL_CTR_PL_RESULT_H_ #define NN_PL_CTR_PL_RESULT_H_ #ifdef __cplusplus #include namespace nn { namespace pl { enum Description { DESCRIPTION_SHAREDFONT_NOT_FOUND = 2 }; NN_DEFINE_RESULT_CONST( ResultSharedFontNotFound, Result::LEVEL_STATUS, Result::SUMMARY_NOT_FOUND, Result::MODULE_NN_PL, DESCRIPTION_SHAREDFONT_NOT_FOUND ); } // end of namespace pl } // end of namespace nn #endif // #ifdef __cplusplus #endif // #ifndef NN_PL_CTR_PL_RESULT_H_