1 /*---------------------------------------------------------------------------* 2 3 Copyright (C) Nintendo. All rights reserved. 4 5 These coded instructions, statements, and computer programs contain 6 proprietary information of Nintendo of America Inc. and/or Nintendo 7 Company Ltd., and are protected by Federal copyright law. They may 8 not be disclosed to third parties or copied or duplicated in any form, 9 in whole or in part, without the prior written consent of Nintendo. 10 11 *---------------------------------------------------------------------------*/ 12 13 //------------------------------------------------------------------------------ 14 /** @file erreula_Const.h 15 * @brief Error viewer data definitions. 16 */ 17 //------------------------------------------------------------------------------ 18 #ifndef NN_ERREULA_CONST_H_ 19 #define NN_ERREULA_CONST_H_ 20 21 /** @namespace nn::erreula 22 * The namespace for <tt>erreula</tt>. 23 */ 24 namespace nn { 25 //------------------------------------------------------------------------------ 26 namespace erreula { 27 //------------------------------------------------------------------------------ 28 /** 29 * 30 */ 31 #define ERROR_CODE_KPAD_READ_ERR_NO_CONTROLLER 1510101 ///< Wii Remote Connection Error 32 //------------------------------------------------------------------------------ 33 /** 34 * 35 */ 36 #define ERROR_CODE_KPAD_WBC_ERR_NO_BATTERY 1510201 ///< Wii Balance Board Dead Battery Error 37 //------------------------------------------------------------------------------ 38 /** 39 * 40 */ 41 #define ERROR_CODE_KPAD_WBC_ERR_WEIGHT_OVER 1510204 ///< Wii Balance Board Weight Overload Error 42 //------------------------------------------------------------------------------ 43 /** 44 * 45 */ 46 #define ERROR_CODE_WPAD_ERR_NO_CONTROLLER 1520100 ///< Wii Remote Communication Error 47 //------------------------------------------------------------------------------ 48 /** 49 * 50 */ 51 #define ERROR_CODE_VPAD_READ_ERR_NO_CONTROLLER 1650101 ///< GamePad Connection Error 52 //------------------------------------------------------------------------------ 53 /** 54 * 55 */ 56 #define ERROR_CODE_GX2_DRC_DETACH 1650101 ///< GamePad Connection Error 57 //------------------------------------------------------------------------------ 58 /** 59 * 60 */ 61 #define ERROR_CODE_FS_STATUS_STORAGE_FULL 1550100 ///< Insufficient Memory to Create Save Data Error 62 //------------------------------------------------------------------------------ 63 /** 64 * 65 */ 66 #define ERROR_CODE_SAVE_STATUS_STORAGE_FULL 1550100 ///< Insufficient Memory to Create Save Data Error 67 //------------------------------------------------------------------------------ 68 /** 69 * 70 */ 71 #define ERROR_CODE_SAVE_STATUS_DEVICE_FULL 1550100 ///< Insufficient Memory to Create Save Data Error 72 //------------------------------------------------------------------------------ 73 /** 74 * 75 */ 76 #define ERROR_CODE_UDS_DISCONNECTED 1560101 ///< Communication Disconnected Error 77 //------------------------------------------------------------------------------ 78 /** 79 * 80 */ 81 #define ERROR_CODE_UDS_NOT_FOUND_USER 1560102 ///< Cannot Find Pairing Device Error 82 //------------------------------------------------------------------------------ 83 /** 84 * 85 */ 86 #define ERROR_CODE_DEVICE_SETTING_READ_FAILURE 1580101 ///< System Settings Read Error 87 //------------------------------------------------------------------------------ 88 /** 89 * 90 */ 91 #define ERROR_CODE_DEVICE_SETTING_WRITE_FAILURE 1580102 ///< System Settings Write Error 92 //------------------------------------------------------------------------------ 93 /** 94 * 95 */ 96 #define ERROR_CODE_TEMP_CREATE_STORAGE_FULL 1660100 ///< Insufficient Memory to Create Temporary Data Error 97 //------------------------------------------------------------------------------ 98 /** 99 * 100 */ 101 #define ERROR_CODE_TEMP_MODIFY_STORAGE_FULL 1660200 ///< Insufficient Memory to Modify Temporary Data Error 102 //------------------------------------------------------------------------------ 103 /** 104 * 105 */ 106 #define CMN_MSG_FATAL 1999999 ///< General Purpose Error Messages 107 //------------------------------------------------------------------------------ 108 /** 109 * 110 */ 111 #define CMN_MSG_JUMP_SETTING_TOP 1990010 ///< System Settings Jump Confirmation Message 112 //------------------------------------------------------------------------------ 113 /** 114 * 115 */ 116 #define CMN_MSG_JUMP_SETTING_INTERNET 1990011 ///< Internet Settings Confirmation Message 117 //------------------------------------------------------------------------------ 118 /** 119 * 120 */ 121 #define CMN_MSG_JUMP_SETTING_DATA_MANAGE 1990012 ///< Data Management Jump Confirmation Message 122 //------------------------------------------------------------------------------ 123 /** 124 * 125 */ 126 #define CMN_MSG_JUMP_SETTING_DATE_TIME 1990014 ///< Date Jump Confirmation Message 127 //------------------------------------------------------------------------------ 128 /** 129 * 130 */ 131 #define CMN_MSG_JUMP_SETTING_UPDATE 1990016 ///< System Update Confirmation Message 132 //------------------------------------------------------------------------------ 133 /** 134 * 135 */ 136 #define CMN_MSG_JUMP_ACCOUNT_SETTING 1990020 ///< Network Registration Confirmation Message 137 //------------------------------------------------------------------------------ 138 /** 139 * 140 */ 141 #define CMN_MSG_JUMP_ACCOUNT_SETTING_2 1990021 ///< Account Logon Failed Error Message 142 //------------------------------------------------------------------------------ 143 /** 144 * 145 */ 146 #define CMN_MSG_JUMP_APP_REBOOT 1990030 ///< Update Confirmation Message 147 //------------------------------------------------------------------------------ 148 /** 149 * 150 */ 151 #define CMN_MSG_RELEASE_PARENTAL_CONTROL 1990040 ///< Release Parental Controls Confirmation Message 152 //------------------------------------------------------------------------------ 153 /** 154 * 155 */ 156 #define CMN_MSG_NGWORD_NOT_ACCEPTABLE 1990101 ///< Profanity Message 157 //------------------------------------------------------------------------------ 158 /** 159 * 160 */ 161 #define CMN_MSG_NGWORD_ACCEPTABLE 1990102 ///< Profanity Message 162 //------------------------------------------------------------------------------ 163 /** 164 * 165 */ 166 #define CMN_MSG_TEXT_OVER_LIMIT 1990105 ///< Maximum String Length Exceeded Message 167 //------------------------------------------------------------------------------ 168 /** 169 * 170 */ 171 #define CMN_MSG_TEXT_NO_INPUT 1990106 ///< No Input Message 172 //------------------------------------------------------------------------------ 173 /** 174 * 175 */ 176 #define CMN_MSG_NUMBER_NOT_ACCEPTABLE 1990110 ///< Prohibited Numeric Character Input Message 177 //------------------------------------------------------------------------------ 178 /** 179 * 180 */ 181 #define CMN_MSG_NUMBER_OVER_LIMIT_1 1990111 ///< Numeric String Length Restriction Message (One Character) 182 //------------------------------------------------------------------------------ 183 /** 184 * 185 */ 186 #define CMN_MSG_NUMBER_OVER_LIMIT_2 1990112 ///< Numeric String Length Restriction Message (Two Characters) 187 //------------------------------------------------------------------------------ 188 /** 189 * 190 */ 191 #define CMN_MSG_NUMBER_OVER_LIMIT_3 1990113 ///< Numeric String Length Restriction Message (Three Characters) 192 //------------------------------------------------------------------------------ 193 /** 194 * 195 */ 196 #define CMN_MSG_NUMBER_OVER_LIMIT_4 1990114 ///< Numeric String Length Restriction Message (Four Characters) 197 //------------------------------------------------------------------------------ 198 /** 199 * 200 */ 201 #define CMN_MSG_NUMBER_OVER_LIMIT_5 1990115 ///< Numeric String Length Restriction Message (Five Characters) 202 //------------------------------------------------------------------------------ 203 /** 204 * 205 */ 206 #define CMN_MSG_NUMBER_OVER_LIMIT_6 1990116 ///< Numeric String Length Restriction Message (Six Characters) 207 //------------------------------------------------------------------------------ 208 /** 209 * 210 */ 211 #define CMN_MSG_NUMBER_OVER_LIMIT_7 1990117 ///< Numeric String Length Restriction Message (Seven Characters) 212 //------------------------------------------------------------------------------ 213 /** 214 * 215 */ 216 #define CMN_MSG_NUMBER_OVER_LIMIT_8 1990118 ///< Numeric String Length Restriction Message (Eight Characters) 217 //------------------------------------------------------------------------------ 218 /** 219 * 220 */ 221 #define CMN_MSG_NUMBER_OVER_LIMIT_9 1990119 ///< Numeric String Length Restriction Message (Nine Characters) 222 //------------------------------------------------------------------------------ 223 /** 224 * 225 */ 226 #define CMN_MSG_NOT_MATCH_PASSWORD 1990120 ///< Password Mismatch Message 227 //------------------------------------------------------------------------------ 228 /** 229 * 230 */ 231 #define CMN_MSG_NOT_MATCH_EMAIL 1990121 ///< Email Address Mismatch Message 232 //------------------------------------------------------------------------------ 233 /** 234 * 235 */ 236 237 #define CMN_MSG_WRONG_PASSWORD 1990131 ///< Wrong Password Message 238 //------------------------------------------------------------------------------ 239 /** 240 * 241 */ 242 243 #define CMN_MSG_WRONG_PIN_CODE 1990132 ///< Wrong PIN Message 244 //------------------------------------------------------------------------------ 245 /** 246 * 247 */ 248 #define CMN_MSG_WRONG_FRIEND_CODE 1990133 ///< Friend Code Error Message 249 //------------------------------------------------------------------------------ 250 /** 251 * 252 */ 253 #define CMN_MSG_WRONG_NNID 1990134 ///< Nintendo Network ID Error Message 254 //------------------------------------------------------------------------------ 255 /** 256 * 257 */ 258 #define CMN_MSG_WRONG_INPUT 1990135 ///< Input Content Error Message 259 //------------------------------------------------------------------------------ 260 /** 261 * 262 */ 263 #define CMN_MSG_WIIEMAIL_NOT_ACCEPTABLE 1990136 ///< Wii Email Address Not Recommended Message 264 //------------------------------------------------------------------------------ 265 /** 266 * 267 */ 268 #define CMN_MSG_FORGET_PIN_CODE 1990140 ///< Forgotten PIN Confirmation Message 269 //------------------------------------------------------------------------------ 270 /** 271 * 272 */ 273 #define CMN_MSG_NEED_WII_REMOTE 1990200 ///< Wii Remote and Sensor Bar Required Message 274 //------------------------------------------------------------------------------ 275 /** 276 * 277 */ 278 #define CMN_MSG_NEED_WII_NUNCHUK 1990201 ///< Nunchuk Required Message 279 //------------------------------------------------------------------------------ 280 /** 281 * 282 */ 283 #define CMN_MSG_NEED_WII_REMOTE_PLUS 1990202 ///< Wii Remote Plus and MotionPlus Required Message 284 //------------------------------------------------------------------------------ 285 /** 286 * 287 */ 288 #define CMN_MSG_NEED_WII_U_PRO_CONTROLLER 1990203 ///< Wii U Pro Controller Required Message 289 //------------------------------------------------------------------------------ 290 /** 291 * 292 */ 293 #define CMN_MSG_NEED_WII_BALANCE_BOARD 1990204 ///< Wii Balance Board Required Message 294 //------------------------------------------------------------------------------ 295 /** 296 * 297 */ 298 #define CMN_MSG_NEED_WII_CLASSIC_CONTROLLER 1990205 ///< Classic Controller Required Message 299 //------------------------------------------------------------------------------ 300 /** 301 * 302 */ 303 #define CMN_MSG_NEED_WII_U_GAMEPAD 1990210 ///< Wii U GamePad Required Message 304 //------------------------------------------------------------------------------ 305 /** 306 * 307 */ 308 #define CMN_MSG_WII_REMOTE_NO_BATTERY 1990301 ///< Wii Remote No Battery Warning Message 309 //------------------------------------------------------------------------------ 310 /** 311 * 312 */ 313 #define CMN_MSG_WII_U_GAMEPAD_NO_BATTERY 1990302 ///< Wii U GamePad No Battery Warning Message 314 //------------------------------------------------------------------------------ 315 /** 316 * 317 */ 318 #define CMN_MSG_WII_U_PRO_CONTROLLER_NO_BATTERY 1990303 ///< Wii U Pro Controller No Battery Message 319 //------------------------------------------------------------------------------ 320 /** 321 * 322 */ 323 #define CMN_MSG_WII_BALANCE_BOARD_NO_BATTERY 1990304 ///< Wii Balance Board No Battery Warning Message 324 //------------------------------------------------------------------------------ 325 /** 326 * 327 */ 328 #define CMN_MSG_MII_ALREADY_SAVED 1990401 ///< Mii Character Already Saved Message 329 //------------------------------------------------------------------------------ 330 /** 331 * 332 */ 333 #define CMN_MSG_MII_CANT_SAVE 1990402 ///< Mii Character Save Error Message 334 //------------------------------------------------------------------------------ 335 /** 336 * 337 */ 338 #define CMN_MSG_MII_OVER_WRITE_CONFIRM 1990403 ///< Mii Character Save Overwrite Message 339 //------------------------------------------------------------------------------ 340 /** 341 * 342 */ 343 #define CMN_MSG_MII_NO_SPACE 1990404 ///< Mii Maker Error Message 344 //------------------------------------------------------------------------------ 345 /** 346 * 347 */ 348 #define CMN_MSG_MII_DATABASE_BROKEN 1990410 ///< Initialization Message Because of Save Data Corruption in Mii Maker 349 //------------------------------------------------------------------------------ 350 /** 351 * 352 */ 353 #define CMN_MSG_FUNCTION_PROTECTED 1990501 ///< Parental Controls Message 354 //------------------------------------------------------------------------------ 355 /** 356 * 357 */ 358 #define CMN_MSG_NETWORK_FUNCTION_PROTECTED 1990502 ///< Parental Controls Communication Restriction Message 359 //------------------------------------------------------------------------------ 360 /** 361 * 362 */ 363 #define CMN_MSG_INTERNET_BROWSER_PROTECTED 1990503 ///< Parental Controls Internet Restriction Message 364 //------------------------------------------------------------------------------ 365 /** 366 * 367 */ 368 #define CMN_MSG_PROTECTION_RELEASED 1990510 ///< Parental Controls Successfully Released Message 369 //------------------------------------------------------------------------------ 370 /** 371 * 372 */ 373 #define CMN_MSG_AUTO_POWER_DOWN 1990601 ///< Automatic Power Down Message 374 //------------------------------------------------------------------------------ 375 /** 376 * 377 */ 378 #define CMN_MSG_AUTO_POWER_DOWN_NOTICE 1990602 ///< Auto Power Down Confirmation Message 379 //------------------------------------------------------------------------------ 380 /** 381 * 382 */ 383 #define CMN_MSG_JUMP_SETTING_TOP_LUN 1991010 ///< System Settings Jump Message 384 //------------------------------------------------------------------------------ 385 /** 386 * 387 */ 388 #define CMN_MSG_JUMP_SETTING_INTERNET_LUN 1991011 ///< Internet Settings Message 389 //------------------------------------------------------------------------------ 390 /** 391 * 392 */ 393 #define CMN_MSG_JUMP_SETTING_DATA_MANAGE_LUN 1991012 ///< Data Management Jump Message 394 //------------------------------------------------------------------------------ 395 /** 396 * 397 */ 398 #define CMN_MSG_JUMP_SETTING_DATE_TIME_LUN 1991014 ///< Date And Time Settings Message 399 //------------------------------------------------------------------------------ 400 /** 401 * 402 */ 403 #define CMN_MSG_JUMP_SETTING_UPDATE_LUN 1991016 ///< System Update Message 404 //------------------------------------------------------------------------------ 405 /** 406 * 407 */ 408 #define CMN_MSG_JUMP_ACCOUNT_SETTING_LUN 1991020 ///< Nintendo Network ID Registration Message 409 //------------------------------------------------------------------------------ 410 /** 411 * 412 */ 413 #define CMN_MSG_JUMP_ACCOUNT_SETTING_2_LUN 1991021 ///< User Settings Jump Message 414 //------------------------------------------------------------------------------ 415 /** 416 * 417 */ 418 #define CMN_MSG_JUMP_APP_REBOOT_LUN 1991030 ///< Update Message 419 //------------------------------------------------------------------------------ 420 /** 421 * 422 */ 423 #define CMN_MSG_ACCOUNT_COUNTRY_INVALID 1991101 ///< Message When Specifying an Account for a Country Different from the System Country 424 //------------------------------------------------------------------------------ 425 /** 426 * 427 */ 428 #define CMN_MSG_ACCOUNT_DELETED 1991102 ///< Nintendo Network ID Deletion Message 429 //------------------------------------------------------------------------------ 430 /** 431 * 432 */ 433 #define CMN_MSG_ACCOUNT_CHANGED 1991103 ///< Nintendo Network ID Changed Message 434 //------------------------------------------------------------------------------ 435 436 437 438 439 440 /** 441 * 442 */ 443 #define CMN_MSG_REREASE_PARENTAL_CONTROLL 1990040 ///< Release Parental Controls Confirmation Message 444 //------------------------------------------------------------------------------ 445 /** 446 * 447 */ 448 #define CMN_MSG_WORNG_PASSWORD 1990131 ///< Wrong Password Message 449 //------------------------------------------------------------------------------ 450 /** 451 * 452 */ 453 #define CMN_MSG_WORNG_PIN_CODE 1990132 ///< Wrong PIN Message 454 //------------------------------------------------------------------------------ 455 /** 456 * 457 */ 458 #define CMN_MSG_WORNG_FRIEND_CODE 1990133 ///< Friend Code Error Message 459 //------------------------------------------------------------------------------ 460 /** 461 * 462 */ 463 #define CMN_MSG_WORNG_NNID 1990134 ///< Nintendo Network ID Error Message 464 //------------------------------------------------------------------------------ 465 /** 466 * 467 */ 468 #define CMN_MSG_WORNG_INPUT 1990135 ///< Input Content Error Message 469 //------------------------------------------------------------------------------ 470 /** 471 * 472 */ 473 #define CMN_MSG_NEED_WII_NUNCHAK 1990201 ///< Nunchuk Required Message 474 //------------------------------------------------------------------------------ 475 /** 476 * 477 */ 478 #define CMN_MSG_NO_COMMUNITY 1990701 ///< The community does not exist. 479 480 //------------------------------------------------------------------------------ 481 } // namespace erreula 482 //------------------------------------------------------------------------------ 483 } // namespace nn 484 485 #endif // NN_ERREULA_CONST_H_ 486