Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
948 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. ftpio.h
  5. Abstract:
  6. This module contains declarations for the FTP transparent proxy's
  7. network I/O completion routines.
  8. Author:
  9. Qiang Wang (qiangw) 10-Apr-2000
  10. Revision History:
  11. --*/
  12. #ifndef _NATHLP_FTPIO_H_
  13. #define _NATHLP_FTPIO_H_
  14. VOID
  15. FtpAcceptCompletionRoutine(
  16. ULONG ErrorCode,
  17. ULONG BytesTransferred,
  18. PNH_BUFFER Bufferp
  19. );
  20. VOID
  21. FtpCloseEndpointNotificationRoutine(
  22. ULONG ErrorCode,
  23. ULONG BytesTransferred,
  24. PNH_BUFFER Bufferp
  25. );
  26. VOID
  27. FtpConnectEndpointCompletionRoutine(
  28. ULONG ErrorCode,
  29. ULONG BytesTransferred,
  30. PNH_BUFFER Bufferp
  31. );
  32. VOID
  33. FtpReadEndpointCompletionRoutine(
  34. ULONG ErrorCode,
  35. ULONG BytesTransferred,
  36. PNH_BUFFER Bufferp
  37. );
  38. VOID
  39. FtpWriteEndpointCompletionRoutine(
  40. ULONG ErrorCode,
  41. ULONG BytesTransferred,
  42. PNH_BUFFER Bufferp
  43. );
  44. #endif // _NATHLP_FTPIO_H_