Merged setupx.dll into setupapi.dll.
[wine] / include / wine / icmpapi.h
1 /*
2  * Interface to the ICMP functions.
3  *
4  * This header is not part of the standard headers, it is usually 
5  * delivered separately and this is why it is not directly in 'include'.
6  *
7  * Depends on ipexport.h (there is no include directive in the original)
8  */
9
10 #ifndef __WINE_ICMPAPI_H
11 #define __WINE_ICMPAPI_H
12
13 #include "wine/ipexport.h"
14 #include "windef.h"
15
16 HANDLE WINAPI IcmpCreateFile(
17     VOID
18     );
19
20 BOOL WINAPI IcmpCloseHandle(
21     HANDLE  IcmpHandle
22     );
23
24 DWORD WINAPI IcmpSendEcho(
25     HANDLE                 IcmpHandle,
26     IPAddr                 DestinationAddress,
27     LPVOID                 RequestData,
28     WORD                   RequestSize,
29     PIP_OPTION_INFORMATION RequestOptions,
30     LPVOID                 ReplyBuffer,
31     DWORD                  ReplySize,
32     DWORD                  Timeout
33     );
34
35
36 #endif /* __WINE_ICMPAPI_H */