IPROPPSI.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * IPROPPSI.H
  3.  *
  4.  * Header for template IPropertyPageSite interface implementation.
  5.  *
  6.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  7.  *
  8.  * Kraig Brockschmidt, Microsoft
  9.  * Internet  :  kraigb@microsoft.com
  10.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  11.  */
  12. #ifndef _IPROPPSI_H_
  13. #define _IPROPPSI_H_
  14. #define INC_CONTROLS
  15. #include <inole.h>
  16. class CImpIPropertyPageSite;
  17. typedef class CImpIPropertyPageSite *PCImpIPropertyPageSite;
  18. class CImpIPropertyPageSite : public IPropertyPageSite
  19.     {
  20.     protected:
  21.         ULONG           m_cRef;      //Interface reference count
  22.         LPVOID          m_pObj;      //Backpointer to the object
  23.         LPUNKNOWN       m_pUnkOuter; //For delegation
  24.     public:
  25.         CImpIPropertyPageSite(LPVOID, LPUNKNOWN);
  26.         ~CImpIPropertyPageSite(void);
  27.         STDMETHODIMP QueryInterface(REFIID, LPVOID *);
  28.         STDMETHODIMP_(ULONG) AddRef(void);
  29.         STDMETHODIMP_(ULONG) Release(void);
  30.      STDMETHODIMP OnStatusChange(DWORD);
  31.      STDMETHODIMP GetLocaleID(LCID *);
  32.      STDMETHODIMP GetPageContainer(LPUNKNOWN *);
  33.      STDMETHODIMP TranslateAccelerator(LPMSG);
  34.     };
  35. #endif //_IPROPPSI_H_