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.

67 lines
809 B

  1. //depot/Lab01_N/Base/cluster/service/inc/api.h#1 - branch change 3 (text)
  2. /*++
  3. Copyright (c) 1996 Microsoft Corporation
  4. Module Name:
  5. api.h
  6. Abstract:
  7. Public data structures and procedure prototypes for
  8. the API subcomponent of the NT Cluster Service
  9. Author:
  10. John Vert (jvert) 7-Feb-1996
  11. Revision History:
  12. --*/
  13. #ifndef __API_H_
  14. #define __API_H_
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. DWORD
  19. ApiInitialize(
  20. VOID
  21. );
  22. DWORD
  23. ApiOnlineReadOnly(
  24. VOID
  25. );
  26. DWORD
  27. ApiOnline(
  28. VOID
  29. );
  30. VOID
  31. ApiOffline(
  32. VOID
  33. );
  34. VOID
  35. ApiShutdown(
  36. VOID
  37. );
  38. DWORD ApiFixupNotifyCb(
  39. IN DWORD dwFixupType,
  40. OUT PVOID *ppPropertyList,
  41. OUT LPDWORD pdwPropertyListSize,
  42. OUT LPWSTR *lpszKeyName
  43. );
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47. #endif // ifndef __API_H_