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.

37 lines
602 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. synconst.h
  5. Abstract:
  6. This module contains the definition of some of the definitions for
  7. synchronization
  8. Author:
  9. Keith Lau (keithlau@microsoft.com)
  10. Revision History:
  11. keithlau 03/02/98 created
  12. --*/
  13. #ifndef __SYNCONST_H__
  14. #define __SYNCONST_H__
  15. // Lock ranks
  16. extern int rankBlockMgr;
  17. extern int rankRecipientHash;
  18. extern int rankLoggingPropertyBag;
  19. // Instance names
  20. extern TCHAR *szBlockMgr;
  21. extern TCHAR *szRecipientHash;
  22. extern TCHAR *szLoggingPropertyBag;
  23. #endif