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

Windows编程

开发平台:

Visual C++

  1. //**********************************************************************
  2. // File name: IOCS.H
  3. //
  4. //      Definition of COleClientSite
  5. //
  6. // Copyright (c) 1992 - 1997 Microsoft Corporation. All rights reserved.
  7. //**********************************************************************
  8. #if !defined( _IOCS_H_ )
  9. #define _IOCS_H_
  10. #include "assert.h"
  11. class CSimpleSite;
  12. interface COleClientSite : public IOleClientSite
  13. {
  14. int m_nCount;
  15. CSimpleSite FAR * m_pSite;
  16. COleClientSite(CSimpleSite FAR * pSite) {
  17. OutputDebugString("In IOCS's constructorrn");
  18. m_pSite = pSite;
  19. m_nCount = 0;
  20. }
  21. ~COleClientSite() {
  22. OutputDebugString("In IOCS's destructorrn");
  23. assert(m_nCount == 0);
  24. }
  25. STDMETHODIMP QueryInterface(REFIID riid, LPVOID FAR* ppvObj);
  26. STDMETHODIMP_(ULONG) AddRef();
  27. STDMETHODIMP_(ULONG) Release();
  28. // *** IOleClientSite methods ***
  29. STDMETHODIMP SaveObject();
  30. STDMETHODIMP GetMoniker(DWORD dwAssign, DWORD dwWhichMoniker, LPMONIKER FAR* ppmk);
  31. STDMETHODIMP GetContainer(LPOLECONTAINER FAR* ppContainer);
  32. STDMETHODIMP ShowObject();
  33. STDMETHODIMP OnShowWindow(BOOL fShow);
  34. STDMETHODIMP RequestNewObjectLayout();
  35. };
  36. #endif