71 lines
1.8 KiB
C
71 lines
1.8 KiB
C
/*
|
|
* Copyright (C) 2003 Juan Lang
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
#ifndef __WINE_IFMIB_H
|
|
#define __WINE_IFMIB_H
|
|
|
|
#include <ifdef.h>
|
|
|
|
typedef struct _MIB_IFNUMBER
|
|
{
|
|
DWORD dwValue;
|
|
} MIB_IFNUMBER, *PMIB_IFNUMBER;
|
|
|
|
|
|
/* Interface table */
|
|
|
|
#define MAX_INTERFACE_NAME_LEN 256
|
|
#define MAXLEN_PHYSADDR 8
|
|
#define MAXLEN_IFDESCR 256
|
|
|
|
typedef struct _MIB_IFROW
|
|
{
|
|
WCHAR wszName[MAX_INTERFACE_NAME_LEN];
|
|
DWORD dwIndex;
|
|
DWORD dwType;
|
|
DWORD dwMtu;
|
|
DWORD dwSpeed;
|
|
DWORD dwPhysAddrLen;
|
|
UCHAR bPhysAddr[MAXLEN_PHYSADDR];
|
|
DWORD dwAdminStatus;
|
|
INTERNAL_IF_OPER_STATUS dwOperStatus;
|
|
DWORD dwLastChange;
|
|
DWORD dwInOctets;
|
|
DWORD dwInUcastPkts;
|
|
DWORD dwInNUcastPkts;
|
|
DWORD dwInDiscards;
|
|
DWORD dwInErrors;
|
|
DWORD dwInUnknownProtos;
|
|
DWORD dwOutOctets;
|
|
DWORD dwOutUcastPkts;
|
|
DWORD dwOutNUcastPkts;
|
|
DWORD dwOutDiscards;
|
|
DWORD dwOutErrors;
|
|
DWORD dwOutQLen;
|
|
DWORD dwDescrLen;
|
|
BYTE bDescr[MAXLEN_IFDESCR];
|
|
} MIB_IFROW, *PMIB_IFROW;
|
|
|
|
typedef struct _MIB_IFTABLE
|
|
{
|
|
DWORD dwNumEntries;
|
|
MIB_IFROW table[1];
|
|
} MIB_IFTABLE, *PMIB_IFTABLE;
|
|
|
|
|
|
#endif /* __WINE_IFMIB_H */
|