/*---------------------------------------------------------------------------* Copyright (C) 2010-2011 Nintendo. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. *---------------------------------------------------------------------------*/ // Version.h : version numbers // #if !defined(_VERSION_H_INCLUDED_) #define _VERSION_H_INCLUDED_ #define VERSION_MAJOR_MAJOR 1 #define VERSION_MAJOR_MINOR 51 #define VERSION_MINOR_MAJOR 1831 #define VERSION_MINOR_MINOR 0 #define VERSION VERSION_MAJOR_MAJOR,VERSION_MAJOR_MINOR,VERSION_MINOR_MAJOR,VERSION_MINOR_MINOR #define VERSION_TEXT "1, 51, 1831, 0\0" #define VERSION_TEXT_SHORT "1.51" #endif // _VERSION_H_INCLUDED_