msf091.zip
include
columnprovider.rgs
contextmenu.rgs
contextmenu_sf.rgs
extension.rgs
extractimage_sf.rgs
infotip.rgs
infotip_sf.rgs
propertysheetext.rgs
propertysheetext_sf.rgs
shell32missing.def
shell32missing.lib
shellfolder.rgs
shellfolderwin98.rgs
vvvsample
Copy of sample1.vvv
menuicon.bmp
sample.def
sample.manifest
sample1.vvv
vvv.ico
vvvtest
sample.yyy
sample1.vvv
sample2.vvv
|
//
// (C) Copyright by Victor Derks <vba64@xs4all.nl>
//
// See README.TXT for the details of the software licence.
//
#pragma once
#include "ibrowserframeoptions.h"
namespace MSF
{
// Provide a more readable name for the MIDL generated enum.
typedef __MIDL_IBrowserFrameOptions_0001 EBrowserFrameOptions;
class ATL_NO_VTABLE IBrowserFrameOptionsImpl :
public IBrowserFrameOptions
{
public:
IBrowserFrameOptionsImpl(EBrowserFrameOptions browserframeoptions = BFO_NONE) :
m_browserframeoptions(browserframeoptions)
{
}
// IBrowserFrameOptions
STDMETHOD(GetFrameOptions)(BROWSERFRAMEOPTIONS dwMask, BROWSERFRAMEOPTIONS* pdwOptions)
{
ATLTRACE2(atlTraceCOM, 0,
"IBrowserFrameOptionsImpl::GetFrameOptions (instance=%p, dwMask=%d, dwOptions=%d)\n",
this, dwMask, m_browserframeoptions);
*pdwOptions = dwMask & m_browserframeoptions;
return S_OK;
}
protected:
EBrowserFrameOptions m_browserframeoptions;
};
} // namespace MSF
|
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please
let us know and we'll add colourisation support for it.
This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.
A list of licenses authors might use can be found here
Victor lives in Nijmegen, the oldest city in The Netherlands.
He studied Applied Physics in Delft and now works for GE Healthcare.