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.

60 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. cluster.h
  5. Abstract:
  6. Top-level include file for all user-mode components in the cluster
  7. project.
  8. Author:
  9. John Vert (jvert) 30-Nov-1995
  10. Revision History:
  11. Environment:
  12. User-mode only.
  13. --*/
  14. #ifndef _CLUSTER_H
  15. #define _CLUSTER_H
  16. #include "resapi.h"
  17. #include "clusdef.h"
  18. #include "clusudef.h"
  19. #include "clusrtl.h"
  20. #include "clusapi.h"
  21. #include "clusmsg.h"
  22. //
  23. // Global Debugging Definitions
  24. //
  25. // Removed comment requiring this to be "#if DBG"
  26. // after verifying that this code isn't used anywhere.
  27. // I am not removing it just to be safe.
  28. // EBK - 5/8/2000 Whistler bug # 83160
  29. #if 1
  30. #define CL_SIG_FIELD DWORD Signature;
  31. #define CL_INIT_SIG(pstruct, sig) ( (pstruct)->Signature = (sig) )
  32. #define CL_ASSERT_SIG(pstruct, sig) CL_ASSERT((pstruct)->Signature == (sig))
  33. #else // DBG
  34. #define CL_SIG_FIELD
  35. #define CL_INIT_SIG(pstruct, sig)
  36. #define CL_ASSERT_SIG(pstruct, sig)
  37. #endif // DBG
  38. #endif //_CLUSTER_H