1 /* WINE iprtrmib.h 2 * Copyright (C) 2003 Juan Lang 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Lesser General Public 6 * License as published by the Free Software Foundation; either 7 * version 2.1 of the License, or (at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Lesser General Public License for more details. 13 * 14 * You should have received a copy of the GNU Lesser General Public 15 * License along with this library; if not, write to the Free Software 16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 17 */ 18 #ifndef WINE_IPRTRMIB_H__ 19 #define WINE_IPRTRMIB_H__ 20 21 #include <mprapi.h> 22 #include <ipifcons.h> 23 24 #include <ipmib.h> 25 #include <tcpmib.h> 26 #include <udpmib.h> 27 28 typedef enum _TCP_TABLE_CLASS 29 { 30 TCP_TABLE_BASIC_LISTENER, 31 TCP_TABLE_BASIC_CONNECTIONS, 32 TCP_TABLE_BASIC_ALL, 33 TCP_TABLE_OWNER_PID_LISTENER, 34 TCP_TABLE_OWNER_PID_CONNECTIONS, 35 TCP_TABLE_OWNER_PID_ALL, 36 TCP_TABLE_OWNER_MODULE_LISTENER, 37 TCP_TABLE_OWNER_MODULE_CONNECTIONS, 38 TCP_TABLE_OWNER_MODULE_ALL 39 } TCP_TABLE_CLASS, *PTCP_TABLE_CLASS; 40 41 typedef enum _UDP_TABLE_CLASS 42 { 43 UDP_TABLE_BASIC, 44 UDP_TABLE_OWNER_PID, 45 UDP_TABLE_OWNER_MODULE 46 } UDP_TABLE_CLASS, *PUDP_TABLE_CLASS; 47 48 /* ReactOS */ 49 typedef enum _TCPIP_OWNER_MODULE_INFO_CLASS 50 { 51 TCPIP_OWNER_MODULE_INFO_BASIC 52 } TCPIP_OWNER_MODULE_INFO_CLASS, *PTCPIP_OWNER_MODULE_INFO_CLASS; 53 54 typedef struct _TCPIP_OWNER_MODULE_BASIC_INFO { 55 PWCHAR pModuleName; 56 PWCHAR pModulePath; 57 } TCPIP_OWNER_MODULE_BASIC_INFO, *PTCPIP_OWNER_MODULE_BASIC_INFO; 58 59 #endif /* WINE_IPRTRMIB_H__ */ 60