Leaked source code of windows server 2003
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.

54 lines
904 B

  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. aep.h
  5. Abstract:
  6. This module contains the echo protocol definitions
  7. Author:
  8. Jameel Hyder (jameelh@microsoft.com)
  9. Nikhil Kamkolkar (nikhilk@microsoft.com)
  10. Revision History:
  11. 19 Jun 1992 Initial Version
  12. Notes: Tab stop: 4
  13. --*/
  14. #ifndef _AEP_
  15. #define _AEP_
  16. #define EP_COMMAND_OFFSET 0
  17. #define EP_COMMAND_REQUEST 1
  18. #define EP_COMMAND_REPLY 2
  19. VOID
  20. AtalkAepPacketIn(
  21. IN PPORT_DESCRIPTOR pPortDesc,
  22. IN PDDP_ADDROBJ pDdpAddr,
  23. IN PBYTE pPkt,
  24. IN USHORT PktLen,
  25. IN PATALK_ADDR pSrcAddr,
  26. IN PATALK_ADDR pDestAddr,
  27. IN ATALK_ERROR ErrorCode,
  28. IN BYTE DdpType,
  29. IN PVOID pHandlerCtx,
  30. IN BOOLEAN OptimizePath,
  31. IN PVOID OptimizeCtx
  32. );
  33. VOID FASTCALL
  34. atalkAepSendComplete(
  35. IN NDIS_STATUS Status,
  36. IN PSEND_COMPL_INFO pSendInfo
  37. );
  38. #endif // _AEP_
  39.