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.

54 lines
1.0 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 2000
  5. //
  6. // File: ac_sink.h
  7. //
  8. // Contents: Home Networking Auto Config Sink class definition
  9. //
  10. // Author: jeffsp 9/27/2000
  11. //
  12. //----------------------------------------------------------------------------
  13. #pragma once
  14. #ifdef PROVIDE_AUTO_CONFIG_SERVICES
  15. #include <netshell.h>
  16. #include "nsbase.h"
  17. #include "nsres.h"
  18. void ac_CreateHomeNetAutoConfigSink(void);
  19. class ATL_NO_VTABLE CAutoConfigUISink :
  20. public CComObjectRootEx<CComObjectThreadModel>,
  21. public IAutoConfigUISink
  22. {
  23. private:
  24. class CMyDialogTst *m_Dialog;
  25. public:
  26. BEGIN_COM_MAP(CAutoConfigUISink)
  27. COM_INTERFACE_ENTRY(IAutoConfigUISink)
  28. END_COM_MAP()
  29. CAutoConfigUISink(){
  30. }
  31. ~CAutoConfigUISink(){
  32. }
  33. void Init(class CMyDialogTst *pDialog){
  34. m_Dialog = pDialog;
  35. }
  36. // IAutoConfigUISink
  37. STDMETHOD(DisplayHomeNetWizardHint)();
  38. };
  39. #endif //#ifdef PROVIDE_AUTO_CONFIG_SERVICES