mirror of https://github.com/tongzx/nt5src
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
37 lines
602 B
/*++
|
|
|
|
Copyright (c) 1998 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
synconst.h
|
|
|
|
Abstract:
|
|
|
|
This module contains the definition of some of the definitions for
|
|
synchronization
|
|
|
|
Author:
|
|
|
|
Keith Lau ([email protected])
|
|
|
|
Revision History:
|
|
|
|
keithlau 03/02/98 created
|
|
|
|
--*/
|
|
|
|
#ifndef __SYNCONST_H__
|
|
#define __SYNCONST_H__
|
|
|
|
// Lock ranks
|
|
extern int rankBlockMgr;
|
|
extern int rankRecipientHash;
|
|
extern int rankLoggingPropertyBag;
|
|
|
|
// Instance names
|
|
extern TCHAR *szBlockMgr;
|
|
extern TCHAR *szRecipientHash;
|
|
extern TCHAR *szLoggingPropertyBag;
|
|
|
|
#endif
|