iproppsi.h
来自「英文版的 想要的话可以下载了 为大家服务」· C头文件 代码 · 共 46 行
H
46 行
/*
* IPROPPSI.H
*
* Header for template IPropertyPageSite interface implementation.
*
* Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
*
* Kraig Brockschmidt, Microsoft
* Internet : kraigb@microsoft.com
* Compuserve: >INTERNET:kraigb@microsoft.com
*/
#ifndef _IPROPPSI_H_
#define _IPROPPSI_H_
#define INC_CONTROLS
#include <inole.h>
class CImpIPropertyPageSite;
typedef class CImpIPropertyPageSite *PCImpIPropertyPageSite;
class CImpIPropertyPageSite : public IPropertyPageSite
{
protected:
ULONG m_cRef; //Interface reference count
LPVOID m_pObj; //Backpointer to the object
LPUNKNOWN m_pUnkOuter; //For delegation
public:
CImpIPropertyPageSite(LPVOID, LPUNKNOWN);
~CImpIPropertyPageSite(void);
STDMETHODIMP QueryInterface(REFIID, LPVOID *);
STDMETHODIMP_(ULONG) AddRef(void);
STDMETHODIMP_(ULONG) Release(void);
STDMETHODIMP OnStatusChange(DWORD);
STDMETHODIMP GetLocaleID(LCID *);
STDMETHODIMP GetPageContainer(LPUNKNOWN *);
STDMETHODIMP TranslateAccelerator(LPMSG);
};
#endif //_IPROPPSI_H_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?