crashanalysercmd/PerfToolsSharedLibraries/Engine/SymbianNativeTools/Include/targetver.h
changeset 0 818e61de6cd1
equal deleted inserted replaced
-1:000000000000 0:818e61de6cd1
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 * 
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 // The following macros define the minimum required platform.  The minimum required platform
       
    19 // is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run 
       
    20 // your application.  The macros work by enabling all features available on platform versions up to and 
       
    21 // including the version specified.
       
    22 
       
    23 // Modify the following defines if you have to target a platform prior to the ones specified below.
       
    24 // Refer to MSDN for the latest info on corresponding values for different platforms.
       
    25 #ifndef WINVER                          // Specifies that the minimum required platform is Windows Vista.
       
    26 #define WINVER 0x0600           // Change this to the appropriate value to target other versions of Windows.
       
    27 #endif
       
    28 
       
    29 #ifndef _WIN32_WINNT            // Specifies that the minimum required platform is Windows Vista.
       
    30 #define _WIN32_WINNT 0x0600     // Change this to the appropriate value to target other versions of Windows.
       
    31 #endif
       
    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 #ifndef _WIN32_IE                       // Specifies that the minimum required platform is Internet Explorer 7.0.
       
    38 #define _WIN32_IE 0x0700        // Change this to the appropriate value to target other versions of IE.
       
    39 #endif