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 #ifndef NN_ACT_ACT_RESULT_DEPRECATED_H_
14 #define NN_ACT_ACT_RESULT_DEPRECATED_H_
15 
16 #include <nn/Result.h>
17 #include <nn/Modules.h>
18 
19 
20 #ifdef __cplusplus
21 
22 
23 namespace nn {
24 namespace act {
25 
26 
27 NN_DEFINE_RESULT_CONST_RANGE(
28     ResultInvalidGameId,
29     nn::Result::LEVEL_STATUS, nn::RESULT_MODULE_NN_ACT, 316288, 316288, 316416
30 );
31 
32 
33 } // namespace act
34 } // namespace nn
35 
36 
37 #endif // __cplusplus
38 
39 
40 #endif // NN_ACT_ACT_RESULT_DEPRECATED_H_
41