CTR-Pia  5.4.3
Game Communication Engine
 全て クラス ネームスペース 関数 変数 型定義 列挙型 列挙型の値 ページ
pia_Version.h
1 /*--------------------------------------------------------------------------------*
2  Copyright (C)Nintendo All rights reserved.
3 
4  These coded instructions, statements, and computer programs contain proprietary
5  information of Nintendo and/or its licensed developers and are protected by
6  national and international copyright laws. They may not be disclosed to third
7  parties or copied or duplicated in any form, in whole or in part, without the
8  prior written consent of Nintendo.
9 
10  The content herein is highly confidential and should be handled accordingly.
11  *--------------------------------------------------------------------------------*/
12 
13 #pragma once
14 
15 
16 #define PIA_VERSION_DATE 20170908
17 #define PIA_VERSION_MAJOR 5
18 #define PIA_VERSION_MINOR 4
19 #define PIA_VERSION_MICRO 3
20 #define PIA_VERSION_PATCH
21 #define PIA_VERSION_REVISION 30561
22 
23 #define PIA_VER_STR(version) PIA_VER_STR_(version)
24 #define PIA_VER_STR_(version) #version
25 
26 // Only the first 16 characters can be embedded as middleware information.
27 #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
28