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.

35 lines
1015 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. //
  4. // File: aqsize.h
  5. //
  6. // Description: Header file that defines globals that can be used as a
  7. // internal version stamp by debugger exstensions
  8. //
  9. // Author: Mike Swafford (MikeSwa)
  10. //
  11. // History:
  12. // 2/5/99 - MikeSwa Created
  13. //
  14. // Copyright (C) 1999 Microsoft Corporation
  15. //
  16. //-----------------------------------------------------------------------------
  17. #ifndef __AQSIZE_H__
  18. #define __AQSIZE_H__
  19. _declspec(selectany) DWORD g_cbClasses =
  20. sizeof(CAQSvrInst) +
  21. sizeof(CLinkMsgQueue) +
  22. sizeof(CDestMsgQueue) +
  23. sizeof(CDomainEntry) +
  24. sizeof(CMsgRef) +
  25. sizeof(CSMTPConn);
  26. _declspec(selectany) DWORD g_dwFlavorSignature =
  27. #ifdef DEBUG
  28. ' GBD';
  29. #else
  30. ' LTR';
  31. #endif
  32. #endif //__AQSIZE_H__