OSDN Git Service

Update MediaInfo binaries to v0.7.53 (2012-01-24), compiled with ICL 12.1.6 and MSVC...
[lamexp/LameXP.git] / src / Targetver.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #pragma once
23
24 // The following macros define the minimum required platform.  The minimum required platform
25 // is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run 
26 // your application.  The macros work by enabling all features available on platform versions up to and 
27 // including the version specified.
28
29 // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and
30 // set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h.
31 //#include <WinSDKVer.h>
32
33 // Modify the following defines if you have to target a platform prior to the ones specified below.
34 // Refer to MSDN for the latest info on corresponding values for different platforms.
35
36 #ifndef _WIN32_WINNT            // Specifies that the minimum required platform is Windows 2000.
37 #define _WIN32_WINNT 0x0501     // Change this to the appropriate value to target other versions of Windows.
38 #endif
39
40 #include <SDKDDKVer.h>