mirror of https://github.com/tongzx/nt5src
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
42 lines
785 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
// File: I O L E W I N D . C P P
|
|
//
|
|
// Contents: IOleWindow implementation for CConnectionFolder
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: jeffspr 22 Sep 1997
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
#include "pch.h"
|
|
#pragma hdrstop
|
|
|
|
#include "foldinc.h" // Standard shell\folder includes
|
|
|
|
|
|
|
|
|
|
STDMETHODIMP CConnectionFolder::GetWindow(
|
|
HWND * lphwnd)
|
|
{
|
|
TraceFileFunc(ttidShellFolderIface);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
STDMETHODIMP CConnectionFolder::ContextSensitiveHelp(
|
|
BOOL fEnterMode)
|
|
{
|
|
TraceFileFunc(ttidShellFolderIface);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
|
|
|