CTR Pia  4.11.3
Game Communication Engine
version.h
1 /*---------------------------------------------------------------------------*
2  Project: Pia
3  File: version.h
4 
5  Copyright Nintendo. 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 
14 #ifndef NN_PIA_VERSION_H_
15 #define NN_PIA_VERSION_H_
16 
17 
18 #define PIA_VERSION_DATE 20170628
19 #define PIA_VERSION_MAJOR 4
20 #define PIA_VERSION_MINOR 11
21 #define PIA_VERSION_MICRO 3
22 #define PIA_VERSION_PATCH
23 #define PIA_VERSION_REVISION 29140
24 
25 #define PIA_VER_STR(version) PIA_VER_STR_(version)
26 #define PIA_VER_STR_(version) #version
27 
28 // Only the first 16 characters can be embedded as middleware information.
29 #define PIA_VERSION_STRING "PIA_"PIA_VER_STR(PIA_VERSION_MAJOR)"_"PIA_VER_STR(PIA_VERSION_MINOR)"_"PIA_VER_STR(PIA_VERSION_MICRO)PIA_VERSION_PATCH
30 
31 
32 #endif // end of NN_PIA_VERSION_H_