1 /*---------------------------------------------------------------------------* 2 3 Copyright (C) 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 #pragma once 13 14 // The following macros define the minimum required platform. The minimum required platform 15 // is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run 16 // your application. The macros work by enabling all features available on platform versions up to and 17 // including the version specified. 18 19 // Modify the following defines if you have to target a platform prior to the ones specified below. 20 // Refer to MSDN for the latest info on corresponding values for different platforms. 21 #ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista. 22 #define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows. 23 #endif 24 25