1 /*---------------------------------------------------------------------------* 2 Project: Horizon 3 File: fs_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 // 17 // Do not edit this file. 18 // This file is automatically generated. 19 // 20 21 #ifndef NN_FS_FS_RESULT_H_ 22 #define NN_FS_FS_RESULT_H_ 23 24 #ifdef __cplusplus 25 26 #include <nn/Result.h> 27 28 namespace nn { namespace fs { 29 30 31 /* Please see man pages for details 32 33 34 35 */ 36 NN_DEFINE_RESULT_CONST_RANGE( 37 ResultNotFound, 38 Result::LEVEL_STATUS, Result::SUMMARY_NOT_FOUND, Result::MODULE_NN_FS, 100, 100, 179 39 ); 40 41 /* Please see man pages for details 42 43 44 45 */ 46 NN_DEFINE_RESULT_CONST_RANGE( 47 ResultMediaNotFound, 48 Result::LEVEL_STATUS, Result::SUMMARY_NOT_FOUND, Result::MODULE_NN_FS, 130, 130, 179 49 ); 50 51 /* Please see man pages for details 52 53 54 55 */ 56 NN_DEFINE_RESULT_CONST_RANGE( 57 ResultAlreadyExists, 58 Result::LEVEL_STATUS, Result::SUMMARY_NOTHING_HAPPENED, Result::MODULE_NN_FS, 180, 180, 199 59 ); 60 61 /* Please see man pages for details 62 63 64 65 */ 66 NN_DEFINE_RESULT_CONST_RANGE( 67 ResultNotEnoughSpace, 68 Result::LEVEL_STATUS, Result::SUMMARY_OUT_OF_RESOURCE, Result::MODULE_NN_FS, 200, 200, 219 69 ); 70 71 /* Please see man pages for details 72 73 74 75 */ 76 NN_DEFINE_RESULT_CONST_RANGE( 77 ResultArchiveInvalidated, 78 Result::LEVEL_STATUS, Result::SUMMARY_INVALID_STATE, Result::MODULE_NN_FS, 220, 220, 229 79 ); 80 81 /* Please see man pages for details 82 83 84 85 */ 86 NN_DEFINE_RESULT_CONST_RANGE( 87 ResultOperationDenied, 88 Result::LEVEL_STATUS, Result::SUMMARY_CANCELLED, Result::MODULE_NN_FS, 230, 230, 339 89 ); 90 91 /* Please see man pages for details 92 93 94 95 */ 96 NN_DEFINE_RESULT_CONST_RANGE( 97 ResultWriteProtected, 98 Result::LEVEL_STATUS, Result::SUMMARY_CANCELLED, Result::MODULE_NN_FS, 260, 260, 279 99 ); 100 101 /* Please see man pages for details 102 103 104 105 */ 106 NN_DEFINE_RESULT_CONST_RANGE( 107 ResultMediaAccessError, 108 Result::LEVEL_STATUS, Result::SUMMARY_INTERNAL, Result::MODULE_NN_FS, 280, 280, 339 109 ); 110 111 /* Please see man pages for details 112 113 114 115 */ 116 NN_DEFINE_RESULT_CONST_RANGE( 117 ResultNotFormatted, 118 Result::LEVEL_STATUS, Result::SUMMARY_INVALID_STATE, Result::MODULE_NN_FS, 340, 340, 359 119 ); 120 121 /* Please see man pages for details 122 123 124 125 */ 126 NN_DEFINE_RESULT_CONST_RANGE( 127 ResultBadFormat, 128 Result::LEVEL_STATUS, Result::SUMMARY_INVALID_STATE, Result::MODULE_NN_FS, 360, 360, 389 129 ); 130 131 /* Please see man pages for details 132 133 134 135 */ 136 NN_DEFINE_RESULT_CONST_RANGE( 137 ResultVerificationFailed, 138 Result::LEVEL_PERMANENT, Result::SUMMARY_WRONG_ARGUMENT, Result::MODULE_NN_FS, 390, 390, 399 139 ); 140 141 /* Please see man pages for details 142 143 144 145 */ 146 NN_DEFINE_RESULT_CONST_RANGE( 147 ResultOutOfResource, 148 Result::LEVEL_PERMANENT, Result::SUMMARY_OUT_OF_RESOURCE, Result::MODULE_NN_FS, 600, 600, 629 149 ); 150 151 /* Please see man pages for details 152 153 154 155 */ 156 NN_DEFINE_RESULT_CONST_RANGE( 157 ResultAccessDenied, 158 Result::LEVEL_PERMANENT, Result::SUMMARY_WRONG_ARGUMENT, Result::MODULE_NN_FS, 630, 630, 659 159 ); 160 161 /* Please see man pages for details 162 163 164 165 */ 166 NN_DEFINE_RESULT_CONST_RANGE( 167 ResultInvalidArgument, 168 Result::LEVEL_USAGE, Result::SUMMARY_INVALID_ARGUMENT, Result::MODULE_NN_FS, 700, 700, 729 169 ); 170 171 /* Please see man pages for details 172 173 174 175 */ 176 NN_DEFINE_RESULT_CONST_RANGE( 177 ResultNotInitialized, 178 Result::LEVEL_USAGE, Result::SUMMARY_INVALID_STATE, Result::MODULE_NN_FS, 730, 730, 749 179 ); 180 181 /* Please see man pages for details 182 183 184 185 */ 186 NN_DEFINE_RESULT_CONST_RANGE( 187 ResultAlreadyInitialized, 188 Result::LEVEL_USAGE, Result::SUMMARY_NOTHING_HAPPENED, Result::MODULE_NN_FS, 750, 750, 759 189 ); 190 191 /* Please see man pages for details 192 193 194 195 */ 196 NN_DEFINE_RESULT_CONST_RANGE( 197 ResultUnsupportedOperation, 198 Result::LEVEL_USAGE, Result::SUMMARY_NOT_SUPPORTED, Result::MODULE_NN_FS, 760, 760, 779 199 ); 200 201 }} 202 203 #endif // __cplusplus 204 205 #endif // NN_FS_FS_RESULT_H_ 206