1 /*---------------------------------------------------------------------------* 2 Project: Horizon 3 File: dlp_DlpVersion.h 4 5 Copyright (C)2009 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 14 *---------------------------------------------------------------------------*/ 15 #ifndef NN_DLP_CTR_DLP_DLP_VERSION_H_ 16 #define NN_DLP_CTR_DLP_DLP_VERSION_H_ 17 18 #include <nn/types.h> 19 20 21 namespace nn { 22 namespace dlp { 23 namespace CTR { 24 25 #define NN_DLP_DEFINE_DLP_VERSION(major, minor, micro) ((u32)major<<24 | (u32)minor<<16&0x00FF0000 | (u32)micro&0x0000FFFF) 26 27 const bit32 DLP_VERSION = NN_DLP_DEFINE_DLP_VERSION(1, 0, 0); 28 29 } // namespace CTR 30 } // namespace dlp 31 } // namespace nn 32 33 #endif // ifndef NN_DLP_CTR_DLP_DLP_VERSION_H_ 34