21 lines
334 B
C
21 lines
334 B
C
#ifndef H_TARGETVER
|
|
#define H_TARGETVER
|
|
|
|
#ifndef WINVER
|
|
#define WINVER 0x0501 // WinXP
|
|
#endif
|
|
|
|
#ifndef _WIN32_WINNT
|
|
#define _WIN32_WINNT 0x0501 // WinXP
|
|
#endif
|
|
|
|
#ifndef _WIN32_WINDOWS
|
|
#define _WIN32_WINDOWS 0x0410 // Win98
|
|
#endif
|
|
|
|
#ifndef _WIN32_IE
|
|
#define _WIN32_IE 0x0600 // IE6
|
|
#endif
|
|
|
|
#endif /* H_TARGETVER */
|