home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / interfac / isimpsit.h < prev    next >
C/C++ Source or Header  |  1996-05-21  |  1KB  |  46 lines

  1. /*
  2.  * ISIMPSIT.H
  3.  *
  4.  * Header for template ISimpleFrameSite 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.  
  13.  
  14. #ifndef _ISIMPSIT_H_
  15. #define _ISIMPSIT_H_
  16.  
  17. #define INC_CONTROLS
  18. #include <inole.h>
  19.  
  20. class CImpISimpleFrameSite;
  21. typedef class CImpISimpleFrameSite *PCImpISimpleFrameSite;
  22.  
  23. class CImpISimpleFrameSite : public ISimpleFrameSite
  24.     {
  25.     protected:
  26.         ULONG           m_cRef;      //Interface reference count
  27.         LPVOID          m_pObj;      //Backpointer to the object
  28.         LPUNKNOWN       m_pUnkOuter; //For delegation
  29.  
  30.     public:
  31.         CImpISimpleFrameSite(LPVOID, LPUNKNOWN);
  32.         ~CImpISimpleFrameSite(void);
  33.  
  34.         STDMETHODIMP QueryInterface(REFIID, LPVOID *);
  35.         STDMETHODIMP_(ULONG) AddRef(void);
  36.         STDMETHODIMP_(ULONG) Release(void);
  37.  
  38.         STDMETHODIMP CImpISimpleFrameSite::PreMessageFilter(HWND
  39.             , UINT, WPARAM, LPARAM, LRESULT *, DWORD *);
  40.         STDMETHODIMP CImpISimpleFrameSite::PostMessageFilter(HWND
  41.             , UINT, WPARAM, LPARAM, LRESULT *, DWORD);
  42.     };
  43.  
  44.  
  45. #endif //_ISIMPSIT_H_
  46.