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.
 
 
 
 
 
 

55 lines
1.4 KiB

//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1997.
//
// File: C O N M A N W . C P P
//
// Contents: Class manager for RAS connections.
//
// Notes:
//
// Author: shaunco 21 Sep 1997
//
//----------------------------------------------------------------------------
#include "pch.h"
#pragma hdrstop
#include "conmanw.h"
#include "enumw.h"
#include "ncbase.h"
#include <ras.h>
//+---------------------------------------------------------------------------
// INetConnectionManager
//
//+---------------------------------------------------------------------------
//
// Member: CWanConnectionManager::EnumConnections
//
// Purpose: Return an INetConnection enumerator.
//
// Arguments:
// Flags [in]
// ppEnum [out] The enumerator.
//
// Returns: S_OK or an error code.
//
// Author: shaunco 21 Sep 1997
//
// Notes:
//
STDMETHODIMP
CWanConnectionManager::EnumConnections (
IN NETCONMGR_ENUM_FLAGS Flags,
OUT IEnumNetConnection** ppEnum)
{
HRESULT hr = CWanConnectionManagerEnumConnection::CreateInstance (
Flags,
IID_IEnumNetConnection,
reinterpret_cast<void**>(ppEnum));
TraceError ("CWanConnectionManager::EnumConnections", hr);
return hr;
}