(file) Return to targetver.h CVS log (file) (dir) Up to [OMI] / omi / unittest

 1 mike  1.1 /*
 2           **==============================================================================
 3           **
 4           ** Open Management Infrastructure (OMI)
 5           **
 6           ** Copyright (c) Microsoft Corporation
 7           ** 
 8           ** Licensed under the Apache License, Version 2.0 (the "License"); you may not 
 9           ** use this file except in compliance with the License. You may obtain a copy 
10           ** of the License at 
11           **
12           **     http://www.apache.org/licenses/LICENSE-2.0 
13           **
14           ** THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15           ** KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED 
16           ** WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, 
17           ** MERCHANTABLITY OR NON-INFRINGEMENT. 
18           **
19           ** See the Apache 2 License for the specific language governing permissions 
20           ** and limitations under the License.
21           **
22 mike  1.1 **==============================================================================
23           */
24           
25           #pragma once
26           
27           // The following macros define the minimum required platform.  The minimum required platform
28           // is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run 
29           // your application.  The macros work by enabling all features available on platform versions up to and 
30           // including the version specified.
31           
32           // Modify the following defines if you have to target a platform prior to the ones specified below.
33           // Refer to MSDN for the latest info on corresponding values for different platforms.
34           #ifndef _WIN32_WINNT            // Specifies that the minimum required platform is Windows Vista.
35           #define _WIN32_WINNT 0x0600     // Change this to the appropriate value to target other versions of Windows.
36           #endif
37           

ViewCVS 0.9.2