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

Windows编程

开发平台:

Visual C++

  1. /*************************************************************************
  2. **
  3. **  This is a part of the Microsoft Source Code Samples.
  4. **
  5. **  Copyright (C) 1992-1997 Microsoft Corporation. All rights reserved.
  6. **
  7. **  This source code is only intended as a supplement to Microsoft Development
  8. **  Tools and/or WinHelp documentation.  See these sources for detailed
  9. **  information regarding the Microsoft samples programs.
  10. **
  11. **  OLE Automation TypeLibrary Browse Helper Sample
  12. **
  13. **  module.cpp
  14. **
  15. **  CModule implementation
  16. **
  17. **  Written by Microsoft Product Support Services, Windows Developer Support
  18. **
  19. *************************************************************************/
  20. #include <windows.h>
  21. #include <windowsx.h>
  22. #ifdef WIN16   
  23.   #include <ole2.h>
  24.   #include <compobj.h>    
  25.   #include <dispatch.h> 
  26.   #include <variant.h>
  27.   #include <olenls.h>  
  28. #endif 
  29. #include "browseh.h"  
  30. /*
  31.  * CModule::Create
  32.  *
  33.  * Purpose:
  34.  *  Creates an instance of the Module automation object and initializes it.
  35.  *
  36.  * Parameters:       
  37.  *  ptinfo      TypeInfo of module.
  38.  *  ppModule    Returns Module automation object.
  39.  *
  40.  * Return Value:
  41.  *  HRESULT
  42.  *
  43.  */
  44. HRESULT 
  45. CModule::Create(LPTYPEINFO ptinfo, CModule FAR* FAR* ppModule) 
  46. {   
  47.     HRESULT hr;
  48.     CModule FAR* pModule = NULL;
  49.      
  50.     *ppModule = NULL;
  51.     
  52.     // Create object.
  53.     pModule = new CModule();
  54.     if (pModule == NULL)
  55.     {
  56.         hr = E_OUTOFMEMORY; 
  57.         goto error;
  58.     }    
  59.     // Load type information for the object from type library. 
  60.     hr = pModule->LoadTypeInfo(IID_IModule);
  61.     if (FAILED(hr))
  62.         goto error;
  63.     // Intialize base class, CTypeInfo
  64.     hr = pModule->_InitTypeInfo(ptinfo);
  65.     if (FAILED(hr))
  66.         goto error;
  67.     
  68.     ptinfo->AddRef();
  69.     pModule->m_ptinfo = ptinfo;
  70. #ifdef _DEBUG  
  71.     lstrcpyn(pModule->m_szClassName, TEXT("Module"), 100);
  72. #endif 
  73.         
  74.     *ppModule = pModule;
  75.     return NOERROR;
  76.     
  77. error:
  78.     if (pModule == NULL) return E_OUTOFMEMORY;
  79.     if (pModule->m_ptinfo) pModule->m_ptinfo->Release();
  80.          
  81.     // Set to NULL to prevent destructor from attempting to free again  
  82.     pModule->m_ptinfo = NULL;
  83.     
  84.     delete pModule;
  85.     return hr;
  86. }
  87. /*
  88.  * CModule::CModule
  89.  *
  90.  * Purpose:
  91.  *  Constructor for CModule object. Initializes members to NULL.
  92.  *
  93.  */
  94. CModule::CModule()
  95.     m_pdispFunctions = NULL;
  96.     m_ptinfo = NULL;
  97. }
  98. /*
  99.  * CModule::~CModule
  100.  *
  101.  * Purpose:
  102.  *  Destructor for CModule object. 
  103.  *
  104.  */
  105. CModule::~CModule()
  106. {
  107.     if (m_pdispFunctions) m_pdispFunctions->Release();   
  108.     if (m_ptinfo) m_ptinfo->Release();
  109. STDMETHODIMP_(REFCLSID)
  110. CModule::GetInterfaceID()
  111. {
  112.     return IID_IModule;
  113. }
  114. STDMETHODIMP_(ICollection FAR*)
  115. CModule::get_Functions()     
  116. {  
  117.     HRESULT hr;
  118.     CFunction FAR* pFunction;
  119.     CCollection FAR* pCollection = NULL;
  120.     LPDISPATCH pdisp;
  121.     LPTYPEATTR ptypeattr = NULL;
  122.     unsigned short n;
  123.     
  124.     if (m_pdispFunctions == NULL)
  125.     {   
  126.         // Create collection of functions of the interface.
  127.         hr = m_ptinfo->GetTypeAttr(&ptypeattr); 
  128.         if (FAILED(hr))
  129.             {RaiseException(IDS_Unexpected); return NULL;}   
  130.         hr = CCollection::Create(ptypeattr->cFuncs, 0, &pCollection);
  131.         if (FAILED(hr))
  132.             {RaiseException(IDS_Unexpected); goto error;}      
  133.         for (n=0; n<ptypeattr->cFuncs; n++)
  134.         {                
  135.             hr = CFunction::Create(m_ptinfo, n, &pFunction); 
  136.             if (FAILED(hr))
  137.                 {RaiseException(IDS_Unexpected); goto error;}
  138.             pFunction->QueryInterface(IID_IDispatch, (void FAR* FAR*)&pdisp);
  139.             pCollection->Add(pdisp);  
  140.             pdisp->Release();
  141.         }
  142.         pCollection->QueryInterface(IID_IDispatch, (void FAR* FAR*)&pdisp);
  143.         m_pdispFunctions = pdisp; 
  144.         m_ptinfo->ReleaseTypeAttr(ptypeattr);
  145.     }
  146.     m_pdispFunctions->AddRef();
  147.     return (ICollection FAR*)m_pdispFunctions;     
  148.     
  149. error:    
  150.     if (ptypeattr) m_ptinfo->ReleaseTypeAttr(ptypeattr);   
  151.     if (pCollection) delete pCollection;  
  152.     return NULL;
  153. }