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.

42 lines
785 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: I O L E W I N D . C P P
  7. //
  8. // Contents: IOleWindow implementation for CConnectionFolder
  9. //
  10. // Notes:
  11. //
  12. // Author: jeffspr 22 Sep 1997
  13. //
  14. //----------------------------------------------------------------------------
  15. #include "pch.h"
  16. #pragma hdrstop
  17. #include "foldinc.h" // Standard shell\folder includes
  18. STDMETHODIMP CConnectionFolder::GetWindow(
  19. HWND * lphwnd)
  20. {
  21. TraceFileFunc(ttidShellFolderIface);
  22. return E_NOTIMPL;
  23. }
  24. STDMETHODIMP CConnectionFolder::ContextSensitiveHelp(
  25. BOOL fEnterMode)
  26. {
  27. TraceFileFunc(ttidShellFolderIface);
  28. return E_NOTIMPL;
  29. }