aswang
1.0
|
00001 /* 00002 Copyright 2003 Joseph Alvis 00003 00004 This file is part of Aswang. 00005 00006 Aswang is free software: you can redistribute it and/or modify 00007 it under the terms of the GNU Lesser General Public License as published by 00008 the Free Software Foundation, either version 3 of the License, or 00009 (at your option) any later version. 00010 00011 Aswang is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 GNU Lesser General Public License for more details. 00015 00016 You should have received a copy of the GNU Lesser General Public License 00017 along with Aswang. If not, see <http://www.gnu.org/licenses/>. 00018 */ 00019 00025 #pragma once 00026 00027 // The following macros define the minimum required platform. The minimum required platform 00028 // is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run 00029 // your application. The macros work by enabling all features available on platform versions up to and 00030 // including the version specified. 00031 00032 // Modify the following defines if you have to target a platform prior to the ones specified below. 00033 // Refer to MSDN for the latest info on corresponding values for different platforms. 00034 #ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista. 00035 #define _WIN32_WINNT 0x0500 // Change this to the appropriate value to target other versions of Windows. 00036 #endif 00037 00038 #ifndef WINVER 00039 #define WINVER 0x0500 00040 #endif