view win32/ipifcons.d @ 4:a5fb1bc967e6

- = command does not need space after it - before using r command, ov command runs the program and stops at main - more source file lines are shown at each step
author marton@basel.hu
date Sun, 10 Apr 2011 12:15:04 +0200
parents 4a9dcbd9e54f
children
line wrap: on
line source

/***********************************************************************\
*                               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
}