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.

56 lines
829 B

  1. /*++
  2. Copyright (c) 1995-2000 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. //
  22. // Global Debugging Definitions
  23. //
  24. #if DBG
  25. #define CL_SIG_FIELD DWORD Signature;
  26. #define CL_INIT_SIG(pstruct, sig) ( (pstruct)->Signature = (sig) )
  27. #define CL_ASSERT_SIG(pstruct, sig) CL_ASSERT((pstruct)->Signature == (sig))
  28. #else // DBG
  29. #define CL_SIG_FIELD
  30. #define CL_INIT_SIG(pstruct, sig)
  31. #define CL_ASSERT_SIG(pstruct, sig)
  32. #endif // DBG
  33. #endif //_CLUSTER_H