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.
|
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1997.
//
// File: N C C O N V . H
//
// Contents: Common routines for dealing with the connections interfaces.
//
// Notes: Pollute this under penalty of death.
//
// Author: shaunco 20 Aug 1998
//
//----------------------------------------------------------------------------
#include <atlbase.h>
#include "netconp.h"
class CPropertiesEx { public: CPropertiesEx(NETCON_PROPERTIES_EX* pPropsEx) { m_pPropsEx = pPropsEx; };
~CPropertiesEx() {};
HRESULT GetField(IN int nField, OUT VARIANT& varElement); HRESULT SetField(IN int nField, IN const VARIANT& varElement);
protected: NETCON_PROPERTIES_EX* m_pPropsEx;
};
|