[Issue 16658] Win32API: default IE ver. set to 4.0 is too old

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Wed Nov 2 20:20:13 PDT 2016


https://issues.dlang.org/show_bug.cgi?id=16658

--- Comment #1 from jiki at red.email.ne.jp ---
Forgot to mention:

The value cooperating with this is defined that
_WIN32_WINNT = 0x501 ( means WinXP )



So I suppose that _WIN32_IE should be changed as follows.

version (IE10) {
} else version (IE9) {
} else version (IE8) {
   ... snipped ...
} else static if (_WIN32_WINNT >= 0x501) { // ADD
    enum uint _WIN32_IE = 0x600;           // ADD
} else static if (_WIN32_WINNT >= 0x410) {
    enum uint _WIN32_IE = 0x400;           // this is used now
} else {

--


More information about the Digitalmars-d-bugs mailing list