1 /*---------------------------------------------------------------------------* 2 3 Copyright (C) 2010-2011 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 // Version.h : version numbers 13 // 14 15 #if !defined(_VERSION_H_INCLUDED_) 16 #define _VERSION_H_INCLUDED_ 17 18 #define VERSION_MAJOR_MAJOR 1 19 #define VERSION_MAJOR_MINOR 51 20 #define VERSION_MINOR_MAJOR 1831 21 #define VERSION_MINOR_MINOR 0 22 #define VERSION VERSION_MAJOR_MAJOR,VERSION_MAJOR_MINOR,VERSION_MINOR_MAJOR,VERSION_MINOR_MINOR 23 #define VERSION_TEXT "1, 51, 1831, 0\0" 24 #define VERSION_TEXT_SHORT "1.51" 25 26 #endif // _VERSION_H_INCLUDED_ 27