|
| 1 | +/* |
| 2 | + * Interface to the ICMP functions. |
| 3 | + * |
| 4 | + * Copyright (C) 1999 Francois Gouget |
| 5 | + * |
| 6 | + * This library is free software; you can redistribute it and/or |
| 7 | + * modify it under the terms of the GNU Lesser General Public |
| 8 | + * License as published by the Free Software Foundation; either |
| 9 | + * version 2.1 of the License, or (at your option) any later version. |
| 10 | + * |
| 11 | + * This library is distributed in the hope that it will be useful, |
| 12 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | + * Lesser General Public License for more details. |
| 15 | + * |
| 16 | + * You should have received a copy of the GNU Lesser General Public |
| 17 | + * License along with this library; if not, write to the Free Software |
| 18 | + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
| 19 | + */ |
| 20 | + |
| 21 | +#ifndef __WINE_ICMPAPI_H |
| 22 | +#define __WINE_ICMPAPI_H |
| 23 | + |
| 24 | +#ifdef __cplusplus |
| 25 | +extern "C" { |
| 26 | +#endif |
| 27 | + |
| 28 | + |
| 29 | +HANDLE WINAPI IcmpCreateFile( |
| 30 | + VOID |
| 31 | + ); |
| 32 | + |
| 33 | +HANDLE WINAPI Icmp6CreateFile( |
| 34 | + VOID |
| 35 | + ); |
| 36 | + |
| 37 | +BOOL WINAPI IcmpCloseHandle( |
| 38 | + HANDLE IcmpHandle |
| 39 | + ); |
| 40 | + |
| 41 | +DWORD WINAPI IcmpParseReplies( |
| 42 | + LPVOID ReplyBuffer, |
| 43 | + DWORD ReplySize |
| 44 | + ); |
| 45 | + |
| 46 | +DWORD WINAPI Icmp6ParseReplies( |
| 47 | + LPVOID ReplyBuffer, |
| 48 | + DWORD ReplySize |
| 49 | + ); |
| 50 | + |
| 51 | +DWORD WINAPI IcmpSendEcho( |
| 52 | + HANDLE IcmpHandle, |
| 53 | + IPAddr DestinationAddress, |
| 54 | + LPVOID RequestData, |
| 55 | + WORD RequestSize, |
| 56 | + PIP_OPTION_INFORMATION RequestOptions, |
| 57 | + LPVOID ReplyBuffer, |
| 58 | + DWORD ReplySize, |
| 59 | + DWORD Timeout |
| 60 | + ); |
| 61 | + |
| 62 | +DWORD WINAPI IcmpSendEcho2( |
| 63 | + HANDLE IcmpHandle, |
| 64 | + HANDLE Event, |
| 65 | +#ifdef __WINE_WINTERNL_H |
| 66 | + PIO_APC_ROUTINE ApcRoutine, |
| 67 | +#else |
| 68 | + FARPROC ApcRoutine, |
| 69 | +#endif |
| 70 | + PVOID ApcContext, |
| 71 | + IPAddr DestinationAddress, |
| 72 | + LPVOID RequestData, |
| 73 | + WORD RequestSize, |
| 74 | + PIP_OPTION_INFORMATION RequestOptions, |
| 75 | + LPVOID ReplyBuffer, |
| 76 | + DWORD ReplySize, |
| 77 | + DWORD Timeout |
| 78 | + ); |
| 79 | + |
| 80 | +DWORD WINAPI IcmpSendEcho2Ex( |
| 81 | + HANDLE IcmpHandle, |
| 82 | + HANDLE Event, |
| 83 | +#ifdef __WINE_WINTERNL_H |
| 84 | + PIO_APC_ROUTINE ApcRoutine, |
| 85 | +#else |
| 86 | + FARPROC ApcRoutine, |
| 87 | +#endif |
| 88 | + PVOID ApcContext, |
| 89 | + IPAddr SourceAddress, |
| 90 | + IPAddr DestinationAddress, |
| 91 | + LPVOID RequestData, |
| 92 | + WORD RequestSize, |
| 93 | + PIP_OPTION_INFORMATION RequestOptions, |
| 94 | + LPVOID ReplyBuffer, |
| 95 | + DWORD ReplySize, |
| 96 | + DWORD Timeout |
| 97 | + ); |
| 98 | + |
| 99 | +DWORD WINAPI Icmp6SendEcho2( |
| 100 | + HANDLE IcmpHandle, |
| 101 | + HANDLE Event, |
| 102 | +#ifdef __WINE_WINTERNL_H |
| 103 | + PIO_APC_ROUTINE ApcRoutine, |
| 104 | +#else |
| 105 | + FARPROC ApcRoutine, |
| 106 | +#endif |
| 107 | + PVOID ApcContext, |
| 108 | + struct sockaddr_in6* SourceAddress, |
| 109 | + struct sockaddr_in6* DestinationAddress, |
| 110 | + LPVOID RequestData, |
| 111 | + WORD RequestSize, |
| 112 | + PIP_OPTION_INFORMATION RequestOptions, |
| 113 | + LPVOID ReplyBuffer, |
| 114 | + DWORD ReplySize, |
| 115 | + DWORD Timeout |
| 116 | + ); |
| 117 | + |
| 118 | + |
| 119 | +#ifdef __cplusplus |
| 120 | +} |
| 121 | +#endif |
| 122 | + |
| 123 | +#endif /* __WINE_ICMPAPI_H */ |
0 commit comments