Leaked source code of windows server 2003
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.
|
|
/*++
Copyright (c) 2000 Microsoft Corporation
Module Name:
DbgComn.h
Abstract:
Some definitions included from too many places, including some pure C files.
Author:
Kamen Moutafov (kamenm) Dec 99 - Feb 2000
Revision History:
--*/
#ifndef __DBGCOMN_HXX__
#define __DBGCOMN_HXX__
#define RpcSectionPrefix (L"\\RPC Control\\DSEC")
#define RpcSectionPrefixSize 17
// 3*8 is the max hex representation of three DWORDS. The constant
// below is in characters including the terminating NULL.
#define RpcSectionNameMaxSize (RpcSectionPrefixSize + 3*8 + 1)
#endif
|