1 /*---------------------------------------------------------------------------* 2 Project: Horizon 3 File: dsp_Result.h 4 5 Copyright (C)2011 Nintendo Co., Ltd. All rights reserved. 6 7 These coded instructions, statements, and computer programs contain 8 proprietary information of Nintendo of America Inc. and/or Nintendo 9 Company Ltd., and are protected by Federal copyright law. They may 10 not be disclosed to third parties or copied or duplicated in any form, 11 in whole or in part, without the prior written consent of Nintendo. 12 13 $Rev: 33727 $ 14 *---------------------------------------------------------------------------*/ 15 16 #ifndef NN_DSP_CTR_DSP_RESULT_H_ 17 #define NN_DSP_CTR_DSP_RESULT_H_ 18 19 #include <nn/Result.h> 20 21 /* Please see man pages for details 22 23 */ 24 25 namespace nn { 26 namespace dsp { 27 namespace CTR { 28 29 /* Please see man pages for details 30 31 32 */ 33 34 /* Please see man pages for details 35 36 37 */ 38 NN_DEFINE_RESULT_CONST( 39 ResultNotInitialized, 40 Result::LEVEL_STATUS, 41 Result::SUMMARY_INVALID_STATE, 42 Result::MODULE_NN_DSP, 43 Result::DESCRIPTION_NOT_INITIALIZED 44 ); 45 46 /* Please see man pages for details 47 48 49 */ 50 NN_DEFINE_RESULT_CONST( 51 ResultAlreadyExists, 52 Result::LEVEL_STATUS, 53 Result::SUMMARY_INVALID_STATE, 54 Result::MODULE_NN_DSP, 55 Result::DESCRIPTION_ALREADY_EXISTS 56 ); 57 58 /* 59 60 */ 61 62 } // namespace CTR 63 } // namespace dsp 64 } // namespace nn 65 66 #endif // NN_DSP_CTR_DSP_RESULT_H_ 67