Assembla home | Assembla project page
 

root/trunk/DirectSoundNotifySample01/targetver.h

Revision 9, 1.7 kB (checked in by alax, 1 year ago)

--

  • Property svn:keywords set to Id
Line 
1 ////////////////////////////////////////////////////////////
2 // targetver.h
3 //
4 // Copyright (C) Alax.Info, 2006-2008
5 // http://alax.info
6 //
7 // A permission to use the source code is granted as long as reference to
8 // source website http://alax.info is retained.
9 //
10 // Created by Roman Ryltsov roman@alax.info
11 //
12 // $Id$
13
14 #pragma once
15
16 // The following macros define the minimum required platform.  The minimum required platform
17 // is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run
18 // your application.  The macros work by enabling all features available on platform versions up to and
19 // including the version specified.
20
21 // Modify the following defines if you have to target a platform prior to the ones specified below.
22 // Refer to MSDN for the latest info on corresponding values for different platforms.
23 #ifndef WINVER                          // Specifies that the minimum required platform is Windows Vista.
24 #define WINVER 0x0600           // Change this to the appropriate value to target other versions of Windows.
25 #endif
26
27
28 #ifndef _WIN32_WINNT            // Specifies that the minimum required platform is Windows Vista.
29 #define _WIN32_WINNT 0x0600     // Change this to the appropriate value to target other versions of Windows.
30 #endif
31
32
33 #ifndef _WIN32_WINDOWS          // Specifies that the minimum required platform is Windows 98.
34 #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
35 #endif
36
37
38 #ifndef _WIN32_IE                       // Specifies that the minimum required platform is Internet Explorer 7.0.
39 #define _WIN32_IE 0x0700        // Change this to the appropriate value to target other versions of IE.
40 #endif
41
Note: See TracBrowser for help on using the browser.