Source code of Windows XP (NT5)
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.

40 lines
1.3 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997 - 2000
  5. //
  6. // File: N E T R A S . H
  7. //
  8. // Contents: Routines supporting RAS interoperability
  9. //
  10. // Notes:
  11. //
  12. // Author: billi 07 03 2001
  13. //
  14. // History:
  15. //
  16. //----------------------------------------------------------------------------
  17. #pragma once
  18. #define LOW_MAJOR_VERSION 0x0001
  19. #define LOW_MINOR_VERSION 0x0003
  20. #define HIGH_MAJOR_VERSION 0x0002
  21. #define HIGH_MINOR_VERSION 0x0000
  22. #define LOW_VERSION ((LOW_MAJOR_VERSION << 16) | LOW_MINOR_VERSION)
  23. #define HIGH_VERSION ((HIGH_MAJOR_VERSION << 16) | HIGH_MINOR_VERSION)
  24. #define LOW_EXT_MAJOR_VERSION 0x0000
  25. #define LOW_EXT_MINOR_VERSION 0x0000
  26. #define HIGH_EXT_MAJOR_VERSION 0x0001
  27. #define HIGH_EXT_MINOR_VERSION 0x0000
  28. #define LOW_EXT_VERSION ((LOW_EXT_MAJOR_VERSION << 16) | LOW_EXT_MINOR_VERSION)
  29. #define HIGH_EXT_VERSION ((HIGH_EXT_MAJOR_VERSION << 16) | HIGH_EXT_MINOR_VERSION)
  30. HRESULT HrConnectionAssociatedWithSharedConnection( INetConnection* pPrivate, INetConnection* pShared, BOOL* pfAssociated );