da7a38f896
- per x32 e x64 target è WindowsXP.
25 lines
1019 B
C
25 lines
1019 B
C
//----------------------------------------------------------------------------
|
|
// EgalTech 2013-2019
|
|
//----------------------------------------------------------------------------
|
|
// File : EgtTargetVer.h Data : 17.01.19 Versione : 2.1a2
|
|
// Contenuto : Dichiarazione macro per versione Windows target.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 20.11.13 DS Creazione modulo.
|
|
// 16.01.19 DS Modifiche per Win32 con WindowsXp e Win64 con Windows7.
|
|
// 17.01.19 DS Riportato Win64 a WindowsXp.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#define WINVER 0x0502 // WindowsXP SP2
|
|
#define _WIN32_WINNT 0x0502 // WindowsXP SP2
|
|
#define _WIN32_IE 0x0603 // IE6 SP2
|
|
|
|
// Per Windows7 usare :
|
|
// #define WINVER 0x0601 // Windows7
|
|
// #define _WIN32_WINNT 0x0601 // Windows7
|
|
// #define _WIN32_IE 0x0800 // IE8
|