1 /*---------------------------------------------------------------------------* 2 Project: Horizon 3 File: snd_Result.h 4 5 Copyright (C)2009-2012 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: 46347 $ 14 *---------------------------------------------------------------------------*/ 15 16 #ifndef NN_SND_CTR_SND_RESULT_H_ 17 #define NN_SND_CTR_SND_RESULT_H_ 18 19 #include <nn/Result.h> 20 21 /* Please see man pages for details 22 23 */ 24 25 namespace nn { 26 namespace snd { 27 namespace CTR { 28 29 /* Please see man pages for details 30 31 */ 32 enum Description 33 { 34 DESCRIPTION_SND_NO_DSP_COMPONENT_LOADED = 1 35 }; 36 37 /* Please see man pages for details 38 39 40 */ 41 42 /* Please see man pages for details 43 44 45 */ 46 NN_DEFINE_RESULT_CONST( 47 ResultAlreadyInitialized, 48 Result::LEVEL_INFO, 49 Result::SUMMARY_NOTHING_HAPPENED, 50 Result::MODULE_NN_SND, 51 Result::DESCRIPTION_ALREADY_INITIALIZED 52 ); 53 54 /* Please see man pages for details 55 56 57 */ 58 NN_DEFINE_RESULT_CONST( 59 ResultNoDspComponentLoaded, 60 Result::LEVEL_STATUS, 61 Result::SUMMARY_INVALID_STATE, 62 Result::MODULE_NN_SND, 63 DESCRIPTION_SND_NO_DSP_COMPONENT_LOADED 64 ); 65 66 /* Please see man pages for details 67 68 69 */ 70 NN_DEFINE_RESULT_CONST( 71 ResultInvalidUsage, 72 Result::LEVEL_USAGE, 73 Result::SUMMARY_INVALID_ARGUMENT, 74 Result::MODULE_NN_SND, 75 Result::DESCRIPTION_INVALID_COMBINATION 76 ); 77 78 /* 79 80 */ 81 82 } // namespace CTR 83 } // namespace snd 84 } // namespace nn 85 86 #endif // NN_SND_CTR_SND_RESULT_H_ 87