1 /*---------------------------------------------------------------------------* 2 Project: Horizon 3 File: dlp_DlpVersion.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 #ifndef NN_DLP_CTR_DLP_DLP_VERSION_H_ 17 #define NN_DLP_CTR_DLP_DLP_VERSION_H_ 18 19 #include <nn/types.h> 20 21 22 namespace nn { 23 namespace dlp { 24 namespace CTR { 25 26 #define NN_DLP_DEFINE_DLP_VERSION(major, minor) ((bit16)major<<8 | (bit16)minor&0x00FF) 27 28 const bit16 DLP_VERSION = NN_DLP_DEFINE_DLP_VERSION(1, 1); 29 30 /* 31 * Ver : 1.0 32 * CTR-SDK Ver : 0.14.23, 1.*, 2.0 33 * Launch version 34 * 35 * Ver : 1.1 36 * CTR-SDK Ver : 3.0 37 * Added CUP version information to the advertise packet (AdvertiseBody0) 38 * Added a DUP toggle flag to the advertise packet (AdvertiseBody0) 39 40 */ 41 } // namespace CTR 42 } // namespace dlp 43 } // namespace nn 44 45 #endif // ifndef NN_DLP_CTR_DLP_DLP_VERSION_H_ 46