|
Revision 9, 1.7 kB
(checked in by alax, 1 year ago)
|
--
|
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
#pragma once |
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 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 |
|
|---|