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.

49 lines
588 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. cluswiz.h
  5. Abstract:
  6. Public header file for NT Cluster Wizards
  7. Author:
  8. John Vert (jvert) 6/17/1996
  9. Revision History:
  10. --*/
  11. #ifndef _CLUSTER_WIZ_
  12. #define _CLUSTER_WIZ_
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. typedef HPROPSHEETPAGE *LPHPROPSHEETPAGE;
  17. BOOL WINAPI
  18. ClusterWizInit(
  19. VOID
  20. );
  21. LPHPROPSHEETPAGE WINAPI
  22. ClusterWizGetServerPages(
  23. LPDWORD PageCount
  24. );
  25. LPHPROPSHEETPAGE WINAPI
  26. ClusterWizGetAdminPages(
  27. LPDWORD PageCount
  28. );
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32. #endif // _CLUSTER_API_