Reactos
at listview 29 lines 1.1 kB view raw
1/* 2 * iphlpapi dll implementation -- Route function prototypes. 3 * 4 * Copyright (C) 2004 Art Yerkes 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Lesser General Public 7 * License as published by the Free Software Foundation; either 8 * version 2.1 of the License, or (at your option) any later version. 9 * 10 * This library is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public 16 * License along with this library; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 */ 19 20#ifndef WINE_IPHLP_ROUTE_H_ 21#define WINE_IPHLP_ROUTE_H_ 22 23/* Create a route entry. */ 24 25DWORD createIpForwardEntry( PMIB_IPFORWARDROW Route ); 26DWORD setIpForwardEntry( PMIB_IPFORWARDROW Route ); 27DWORD deleteIpForwardEntry( PMIB_IPFORWARDROW Route ); 28 29#endif/*WINE_IPHLP_ROUTE_H_*/