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.

53 lines
879 B

  1. #ifndef _CLUSSPRT_H
  2. #define _CLUSSPRT_H
  3. /*++
  4. Copyright (c) Microsoft Corporation. All rights reserved.
  5. Module Name:
  6. clussprt.h
  7. Abstract:
  8. Private header file for the cluster registry
  9. Author:
  10. Sunita Shrivastava (sunitas) 15-Jan-1996
  11. Revision History:
  12. --*/
  13. #include <windows.h>
  14. HANDLE
  15. WINAPI
  16. BindToCluster(
  17. IN LPWSTR lpszClusterName);
  18. typedef HANDLE (*BINDTOCLUSTERPROC)(LPWSTR lpszClusterName);
  19. DWORD
  20. WINAPI
  21. UnbindFromCluster(
  22. IN HANDLE hCluster);
  23. typedef DWORD (*UNBINDFROMCLUSTERPROC)(HANDLE hCluster);
  24. DWORD
  25. PropagateEvents(
  26. IN HANDLE hCluster,
  27. IN DWORD dwEventInfoSize,
  28. IN UCHAR *pPackedEventInfoSize);
  29. typedef DWORD (*PROPAGATEEVENTSPROC)(HANDLE hCluster,
  30. DWORD dwEventInfoSize, UCHAR *pPackedEventInfoSize);
  31. #define CLUSSPRT_EVENT_TIME_DELTA_INFORMATION 1202
  32. #endif //_CLUSSPRT_H