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.

30 lines
616 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. DbgComn.h
  5. Abstract:
  6. Some definitions included from too many places,
  7. including some pure C files.
  8. Author:
  9. Kamen Moutafov (kamenm) Dec 99 - Feb 2000
  10. Revision History:
  11. --*/
  12. #ifndef __DBGCOMN_HXX__
  13. #define __DBGCOMN_HXX__
  14. #define RpcSectionPrefix (L"\\RPC Control\\DSEC")
  15. #define RpcSectionPrefixSize 17
  16. // 3*8 is the max hex representation of three DWORDS. The constant
  17. // below is in characters including the terminating NULL.
  18. #define RpcSectionNameMaxSize (RpcSectionPrefixSize + 3*8 + 1)
  19. #endif