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, 2000.
//
// File: S A M P L E D E V I C E . H
//
// Contents: UPnP Device Host Sample Device
//
// Notes:
//
// Author: mbend 26 Sep 2000
//
//----------------------------------------------------------------------------
#pragma once
#include "resource.h" // main symbols
#include "netconp.h"
#include "netcon.h"
#include "CWANConnectionBase.h"
/////////////////////////////////////////////////////////////////////////////
// CInternetGatewayDevice
class ATL_NO_VTABLE CWANIPConnectionService : public CWANConnectionBase { public:
CWANIPConnectionService();
STDMETHODIMP RequestConnection(); STDMETHODIMP ForceTermination(); STDMETHODIMP get_LastConnectionError(BSTR *pLastConnectionError);
private:
};
|