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.

52 lines
692 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. cdp.h
  5. Abstract:
  6. Main private header file for the Cluster Network Protocol.
  7. Author:
  8. Mike Massa (mikemas) July 29, 1996
  9. Revision History:
  10. Who When What
  11. -------- -------- ----------------------------------------------
  12. mikemas 07-29-96 created
  13. Notes:
  14. --*/
  15. #ifndef _CDP_INCLUDED_
  16. #define _CDP_INCLUDED_
  17. NTSTATUS
  18. CdpInitializeSend(
  19. VOID
  20. );
  21. VOID
  22. CdpCleanupSend(
  23. VOID
  24. );
  25. NTSTATUS
  26. CdpInitializeReceive(
  27. VOID
  28. );
  29. VOID
  30. CdpCleanupReceive(
  31. VOID
  32. );
  33. #endif // ifndef _CDP_INCLUDED_
  34.