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.

38 lines
944 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 2000.
  5. //
  6. // File: S A M P L E D E V I C E . H
  7. //
  8. // Contents: UPnP Device Host Sample Device
  9. //
  10. // Notes:
  11. //
  12. // Author: mbend 26 Sep 2000
  13. //
  14. //----------------------------------------------------------------------------
  15. #pragma once
  16. #include "resource.h" // main symbols
  17. #include "netconp.h"
  18. #include "netcon.h"
  19. #include "CWANConnectionBase.h"
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CInternetGatewayDevice
  22. class ATL_NO_VTABLE CWANIPConnectionService :
  23. public CWANConnectionBase
  24. {
  25. public:
  26. CWANIPConnectionService();
  27. STDMETHODIMP RequestConnection();
  28. STDMETHODIMP ForceTermination();
  29. STDMETHODIMP get_LastConnectionError(BSTR *pLastConnectionError);
  30. private:
  31. };