~ubuntu-weilnetz/ocsinventory-windows-agent/ocsinventory-windows-agent

« back to all changes in this revision

Viewing changes to ComHTTP/targetver.h

  • Committer: Didier Liroulet
  • Date: 2014-08-22 13:39:03 UTC
  • Revision ID: didier.liroulet@ocsinventory-ng.org-20140822133903-td208un112p2da16
Activate Bug #966320 fix: Disable support for Windows 2000

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
// Modify the following defines if you have to target a platform prior to the ones specified below.
19
19
// Refer to MSDN for the latest info on corresponding values for different platforms.
20
 
#ifndef WINVER                          // Allow use of features specific to Windows 2000 or later.
21
 
#define WINVER 0x0500           // Change this to the appropriate value to target other versions of Windows.
 
20
#ifndef WINVER                          // Allow use of features specific to Windows XP or later.
 
21
#define WINVER 0x0501           // Change this to the appropriate value to target other versions of Windows.
22
22
#endif
23
23
 
24
 
#ifndef _WIN32_WINNT            // Allow use of features specific to Windows 2000 or later.                   
25
 
#define _WIN32_WINNT 0x0500     // Change this to the appropriate value to target other versions of Windows.
 
24
#ifndef _WIN32_WINNT            // Allow use of features specific to Windows XP or later.                   
 
25
#define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
26
26
#endif                                          
27
27
 
28
 
#ifndef _WIN32_WINDOWS          // Allow use of features specific to Windows 98 or later.
29
 
#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
30
 
#endif
31
 
 
32
28
#ifndef _WIN32_IE                       // Allow use of features specific to IE 5.0 or later.
33
29
#define _WIN32_IE 0x0500        // Change this to the appropriate value to target other versions of IE.
34
30
#endif