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

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * ISPPROPP.H
  3.  *
  4.  * Header for template ISpecifyPropertyPages 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 _ISPPROPP_H_
  13. #define _ISPPROPP_H_
  14. #define INC_CONTROLS
  15. #include <inole.h>
  16. class CImpISpecifyPropertyPages;
  17. typedef class CImpISpecifyPropertyPages *PCImpISpecifyPropertyPages;
  18. class CImpISpecifyPropertyPages : public ISpecifyPropertyPages
  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.         CImpISpecifyPropertyPages(LPVOID, LPUNKNOWN);
  26.         ~CImpISpecifyPropertyPages(void);
  27.         STDMETHODIMP QueryInterface(REFIID, LPVOID *);
  28.         STDMETHODIMP_(ULONG) AddRef(void);
  29.         STDMETHODIMP_(ULONG) Release(void);
  30.         STDMETHODIMP GetPages(CAUUID *);
  31.     };
  32. #endif //_ISPPROPP_H_