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.

37 lines
796 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 CUPnPDeviceFolder
  9. //
  10. // Notes:
  11. //
  12. // Author: jeffspr 22 Sep 1997
  13. //
  14. //----------------------------------------------------------------------------
  15. #include "pch.h"
  16. #pragma hdrstop
  17. STDMETHODIMP CUPnPDeviceFolder::GetWindow(
  18. HWND * lphwnd)
  19. {
  20. TraceTag(ttidShellFolderIface, "OBJ: CCF - IOleWindow::GetWindow");
  21. return E_NOTIMPL;
  22. }
  23. STDMETHODIMP CUPnPDeviceFolder::ContextSensitiveHelp(
  24. BOOL fEnterMode)
  25. {
  26. TraceTag(ttidShellFolderIface, "OBJ: CCF - IOleWindow::ContextSensitiveHelp");
  27. return E_NOTIMPL;
  28. }