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.

34 lines
856 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: N C C O N V . H
  7. //
  8. // Contents: Common routines for dealing with the connections interfaces.
  9. //
  10. // Notes: Pollute this under penalty of death.
  11. //
  12. // Author: shaunco 20 Aug 1998
  13. //
  14. //----------------------------------------------------------------------------
  15. #include <atlbase.h>
  16. #include "netconp.h"
  17. class CPropertiesEx
  18. {
  19. public:
  20. CPropertiesEx(NETCON_PROPERTIES_EX* pPropsEx)
  21. {
  22. m_pPropsEx = pPropsEx;
  23. };
  24. ~CPropertiesEx() {};
  25. HRESULT GetField(IN int nField, OUT VARIANT& varElement);
  26. HRESULT SetField(IN int nField, IN const VARIANT& varElement);
  27. protected:
  28. NETCON_PROPERTIES_EX* m_pPropsEx;
  29. };