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.

46 lines
931 B

  1. #pragma once
  2. //++
  3. //
  4. // Copyright (c) 2001 Microsoft Corporation
  5. //
  6. // FACILITY:
  7. //
  8. // Cluster Service
  9. //
  10. // MODULE DESCRIPTION:
  11. //
  12. // Private header for Vss support within cluster service.
  13. //
  14. // ENVIRONMENT:
  15. //
  16. // User mode NT Service.
  17. //
  18. // AUTHOR:
  19. //
  20. // Conor Morrison
  21. //
  22. // CREATION DATE:
  23. //
  24. // 18-Apr-2001
  25. //
  26. // Revision History:
  27. //
  28. // X-1 CM Conor Morrison 18-Apr-2001
  29. // Initial version.
  30. //--
  31. #include "CVssCluster.h"
  32. #define LOG_CURRENT_MODULE LOG_MODULE_VSSCLUS
  33. // Global data for our instance of the class and boolean to say if we
  34. // subscribed or not. This will be used in cluster service.
  35. //
  36. PCVssWriterCluster g_pCVssWriterCluster = NULL;
  37. bool g_bCVssWriterClusterSubscribed = FALSE;
  38. // Our VSS_ID a.k.a GUID
  39. // {41E12264-35D8-479b-8E5C-9B23D1DAD37E}
  40. const VSS_ID g_VssIdCluster =
  41. { 0x41e12264, 0x35d8, 0x479b, { 0x8e, 0x5c, 0x9b, 0x23, 0xd1, 0xda, 0xd3, 0x7e } };