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.

31 lines
883 B

  1. //+-------------------------------------------------------------------------
  2. // Microsoft OLE
  3. // Copyright (C) Microsoft Corporation, 1992 - 1996.
  4. // All rights reserved.
  5. //
  6. // File: dfhelp.hxx
  7. //
  8. // Contents: Miscellaneous stuff for common functions and utilities
  9. //
  10. // History: DeanE 01-Mar-96 Created from remains of w4ctsupp.hxx
  11. //--------------------------------------------------------------------------
  12. #ifndef __DFHELP_HXX__
  13. #define __DFHELP_HXX__
  14. // Debug object library trace level
  15. #define DH_LVL_DFLIB 0x00100000
  16. // Large integer support macros - we use these as they will compile for
  17. // Chicago without linking to NTDLL.DLL
  18. #define ULIGetLow(li) ((li).LowPart)
  19. #define LIAssign(li1,li2) \
  20. { \
  21. (li1).LowPart = (li2).LowPart; \
  22. (li1).HighPart = (li2).HighPart; \
  23. }
  24. #endif