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.
48 lines
1.2 KiB
48 lines
1.2 KiB
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
faxproppg.h
|
|
|
|
Abstract:
|
|
|
|
This header prototypes my implementation of IExtendPropertySheet for the IComponent interface.
|
|
|
|
Environment:
|
|
|
|
WIN32 User Mode
|
|
|
|
Author:
|
|
|
|
Darwin Ouyang (t-darouy) 30-Sept-1997
|
|
|
|
--*/
|
|
|
|
#ifndef __FAX_ICOMPONENT_PROP_PAGE_H_
|
|
#define __FAX_ICOMPONENT_PROP_PAGE_H_
|
|
|
|
#include "resource.h"
|
|
|
|
class CFaxComponent; // forward declared
|
|
|
|
class CFaxComponentExtendPropertySheet : public IExtendPropertySheet {
|
|
public:
|
|
CFaxComponentExtendPropertySheet()
|
|
{
|
|
m_pFaxComponent = NULL;
|
|
}
|
|
|
|
virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE CreatePropertyPages(
|
|
/* [in] */ LPPROPERTYSHEETCALLBACK lpProvider,
|
|
/* [in] */ LONG_PTR handle,
|
|
/* [in] */ LPDATAOBJECT lpIDataObject);
|
|
|
|
virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE QueryPagesFor(
|
|
/* [in] */ LPDATAOBJECT lpDataObject);
|
|
protected:
|
|
CFaxComponent * m_pFaxComponent;
|
|
};
|
|
|
|
#endif
|