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.
48 lines
1.6 KiB
48 lines
1.6 KiB
//==============================================================;
|
|
//
|
|
// This source code is only intended as a supplement to existing Microsoft documentation.
|
|
//
|
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
|
|
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
|
|
// PURPOSE.
|
|
//
|
|
// Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
|
|
//==============================================================;
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "DeleBase.h"
|
|
|
|
const GUID CDelegationBase::thisGuid = { 0x66f340f8, 0x3733, 0x49b4, {0x8e, 0x48, 0x10, 0x20, 0xe4, 0xdd, 0x86, 0x60} };
|
|
/*
|
|
HBITMAP CDelegationBase::m_pBMapSm = NULL;
|
|
HBITMAP CDelegationBase::m_pBMapLg = NULL;
|
|
*/
|
|
//==============================================================
|
|
//
|
|
// CDelegationBase implementation
|
|
//
|
|
//
|
|
CDelegationBase::CDelegationBase()
|
|
: bExpanded(FALSE)
|
|
{
|
|
/* if (NULL == m_pBMapSm || NULL == m_pBMapLg)
|
|
LoadBitmaps(); */
|
|
}
|
|
|
|
CDelegationBase::~CDelegationBase()
|
|
{
|
|
}
|
|
/*
|
|
// CDelegationBase::AddImages sets up the collection of images to be displayed
|
|
// by the IComponent in the result pane as a result of its MMCN_SHOW handler
|
|
HRESULT CDelegationBase::OnAddImages(IImageList *pImageList, HSCOPEITEM hsi)
|
|
{
|
|
return pImageList->ImageListSetStrip((long *)m_pBMapSm, // pointer to a handle
|
|
(long *)m_pBMapLg, // pointer to a handle
|
|
0, // index of the first image in the strip
|
|
RGB(0, 128, 128) // color of the icon mask
|
|
);
|
|
}
|
|
*/
|