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

Windows编程

开发平台:

Visual C++

  1. //**********************************************************************
  2. // File name: iec.h
  3. //
  4. //      Definition of CExternalConnection
  5. //
  6. // Copyright (c) 1993-1997 Microsoft Corporation. All rights reserved.
  7. //**********************************************************************
  8. #if !defined( _IEC_H_)
  9. #define _IEC_H_
  10. #include <ole2.h>
  11. #include "obj.h"
  12. class CSimpSvrObj;
  13. interface CExternalConnection : public IExternalConnection
  14. {
  15. private:
  16. CSimpSvrObj FAR * m_lpObj;  // Ptr to object
  17. int m_nCount;               // Ref count
  18. DWORD m_dwStrong;           // Connection Count
  19. public:
  20. CExternalConnection::CExternalConnection(CSimpSvrObj FAR * lpSimpSvrObj)
  21. {
  22. m_lpObj = lpSimpSvrObj;
  23. m_nCount = 0;
  24. m_dwStrong = 0;
  25. };
  26. CExternalConnection::~CExternalConnection() {};
  27. // *** IUnknown methods ***
  28. STDMETHODIMP QueryInterface (REFIID riid, LPVOID FAR* ppvObj);
  29. STDMETHODIMP_(ULONG) AddRef ();
  30. STDMETHODIMP_(ULONG) Release ();
  31. // *** IExternalConnection methods ***
  32. STDMETHODIMP_(DWORD) AddConnection (DWORD extconn, DWORD reserved);
  33. STDMETHODIMP_(DWORD) ReleaseConnection (DWORD extconn, DWORD reserved, BOOL fLastReleaseCloses);
  34. };
  35. #endif