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.
 
 
 
 
 
 

44 lines
969 B

//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1997 - 2000
//
// File: H N I C S P U B . H
//
// Contents: CHNIcsPublicConn declarations
//
// Notes:
//
// Author: jonburs 23 June 2000
//
//----------------------------------------------------------------------------
#pragma once
class ATL_NO_VTABLE CHNIcsPublicConn :
public IHNetIcsPublicConnection,
public CHNetConn
{
public:
BEGIN_COM_MAP(CHNIcsPublicConn)
COM_INTERFACE_ENTRY(IHNetIcsPublicConnection)
COM_INTERFACE_ENTRY_CHAIN(CHNetConn)
END_COM_MAP()
DECLARE_PROTECT_FINAL_CONSTRUCT()
//
// IHNetIcsPublicConnection methods
//
STDMETHODIMP
Unshare();
};
typedef CHNCEnum<
IEnumHNetIcsPublicConnections,
IHNetIcsPublicConnection,
CHNIcsPublicConn
>
CEnumHNetIcsPublicConnections;