Artifact 309cc6cabdd19f28b023cca60d24b611620af4af
- File
src/win32/ipifcons.d
-
2015-05-05 06:49:05
- part of checkin
[9b639cf2d6]
on branch trunk
- Working version for update to 2.067.
The problem was __gshared. Replacing it with TLS fixed the issue. Remaining problem is that "hack.d"'s CloseHandle hack is not working anymore.
(user: kinaba) [annotate]
-
2015-05-05 06:49:05
- part of checkin
[9b639cf2d6]
on branch trunk
- Working version for update to 2.067.
/***********************************************************************\ * ipifcons.d * * * * Windows API header module * * * * Translated from MinGW Windows headers * * by Stewart Gordon * * * * Placed into public domain * \***********************************************************************/ module win32.ipifcons; // FIXME: check types of constants enum { MIB_IF_ADMIN_STATUS_UP = 1, MIB_IF_ADMIN_STATUS_DOWN, MIB_IF_ADMIN_STATUS_TESTING, } enum { MIB_IF_OPER_STATUS_NON_OPERATIONAL, MIB_IF_OPER_STATUS_UNREACHABLE, MIB_IF_OPER_STATUS_DISCONNECTED, MIB_IF_OPER_STATUS_CONNECTING, MIB_IF_OPER_STATUS_CONNECTED, MIB_IF_OPER_STATUS_OPERATIONAL // = 5 } enum { MIB_IF_TYPE_OTHER = 1, MIB_IF_TYPE_ETHERNET = 6, MIB_IF_TYPE_TOKENRING = 9, MIB_IF_TYPE_FDDI = 15, MIB_IF_TYPE_PPP = 23, MIB_IF_TYPE_LOOPBACK = 24, MIB_IF_TYPE_SLIP = 28 }