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

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * IPROPNOT.H
  3.  *
  4.  * Header for template IPropertyNotifySink 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 _IPROPNOT_H_
  13. #define _IPROPNOT_H_
  14. #define INC_CONTROLS
  15. #include <inole.h>
  16. class CImpIPropertyNotifySink;
  17. typedef class CImpIPropertyNotifySink *PCImpIPropertyNotifySink;
  18. class CImpIPropertyNotifySink : public IPropertyNotifySink
  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.         CImpIPropertyNotifySink(LPVOID, LPUNKNOWN);
  26.         ~CImpIPropertyNotifySink(void);
  27.         //IPropertyNotifySink interface members
  28.         STDMETHODIMP QueryInterface(REFIID, LPVOID *);
  29.         STDMETHODIMP_(ULONG) AddRef(void);
  30.         STDMETHODIMP_(ULONG) Release(void);
  31.         STDMETHODIMP OnChanged(DISPID);
  32.         STDMETHODIMP OnRequestEdit(DISPID);
  33.     };
  34. #endif //_IPROPNOT_H_