From: <dan...@us...> - 2007-12-07 16:49:30
|
Revision: 1089 http://cegcc.svn.sourceforge.net/cegcc/?rev=1089&view=rev Author: dannybackx Date: 2007-12-07 08:49:29 -0800 (Fri, 07 Dec 2007) Log Message: ----------- New file. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce Added Paths: ----------- trunk/cegcc/src/w32api/include/icmpapi.h Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2007-12-07 16:47:19 UTC (rev 1088) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2007-12-07 16:49:29 UTC (rev 1089) @@ -1,3 +1,7 @@ +2007-12-07 Danny Backx <dan...@us...> + + * w32api/include/icmpapi.h : Add new file. + 2007-12-01 Danny Backx <dan...@us...> * w32api/include/aygshell.h : Add SHInitExtraControls. Added: trunk/cegcc/src/w32api/include/icmpapi.h =================================================================== --- trunk/cegcc/src/w32api/include/icmpapi.h (rev 0) +++ trunk/cegcc/src/w32api/include/icmpapi.h 2007-12-07 16:49:29 UTC (rev 1089) @@ -0,0 +1,25 @@ +/* + * icmpapi.h + */ +#ifndef _ICMPAPI_H_ +#define _ICMPAPI_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +HANDLE WINAPI IcmpCreateFile(void); +DWORD WINAPI IcmpSendEcho(HANDLE IcmpHandle, + IPAddr DestinationAddress, + LPVOID RequestData, + WORD RequestSize, + PIP_OPTION_INFORMATION RequestOptions, + LPVOID ReplyBuffer, + DWORD ReplySize, + DWORD Timeout); +BOOL WINAPI IcmpCloseHandle(HANDLE IcmpHandle); + +#ifdef __cplusplus +} +#endif +#endif /* _ICMPAPI_H_ */ Property changes on: trunk/cegcc/src/w32api/include/icmpapi.h ___________________________________________________________________ Name: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |