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

Windows编程

开发平台:

Visual C++

  1. // tlbodl.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CTypeLibODLView view
  14. class CTypeLibODLView : public CEditView
  15. {
  16. friend class CTypeLibWnd ;
  17. protected:
  18. CTypeLibODLView();           // protected constructor used by dynamic creation
  19. DECLARE_DYNCREATE(CTypeLibODLView)
  20. // Attributes
  21. public:
  22. CFont   m_Font ;
  23. // Operations
  24. public:
  25. HRESULT  DeCompileTypeLib( IStream* pstm, ITypeLib* ptlb, UINT uiIndent  = 0 ) ;
  26. HRESULT  DeCompileTypedef( IStream* pstm, ITypeInfo* pti, UINT uiIndent  = 0 ) ;
  27. HRESULT  DeCompileModule( IStream* pstm, ITypeInfo* pti, UINT uiIndent  = 0 ) ;
  28. HRESULT  DeCompileInterface( IStream* pstm, ITypeInfo* pti, UINT uiIndent  = 0 ) ;
  29. HRESULT  DeCompileDispinterface( IStream* pstm, ITypeInfo* pti, UINT uiIndent  = 0 ) ;
  30. HRESULT  DeCompileCoClass( IStream* pstm, ITypeInfo* pti, UINT uiIndent  = 0 ) ;
  31. HRESULT  DeCompileFunc( IStream* pstm, ITypeInfo* pti, MEMBERID memid, UINT uiIndent  = 0 ) ;
  32. HRESULT  DumpFunc( IStream* pstm, ITypeInfo* pti, TYPEATTR* pattr, MEMBERID memid, UINT uiIndent  = 0 ) ;
  33. HRESULT  DeCompileVar( IStream* pstm, ITypeInfo* pti, MEMBERID memid, UINT uiIndent  = 0 ) ;
  34. HRESULT  DumpVar( IStream* pstm, ITypeInfo* pti, TYPEATTR* pattr, MEMBERID memid, UINT uiIndent  = 0 ) ;
  35. HRESULT  DeCompileConst( IStream* pstm, ITypeInfo* pti, MEMBERID memid, UINT uiIndent  = 0, BOOL fConst = TRUE  ) ;
  36. HRESULT  DumpConst( IStream* pstm, ITypeInfo* pti, TYPEATTR* pattr, MEMBERID memid, UINT uiIndent = 0, BOOL fConst = TRUE ) ;
  37. // Overrides
  38. public:
  39. // ClassWizard generated virtual function overrides
  40. //{{AFX_VIRTUAL(CTypeLibODLView)
  41. public:
  42. virtual void OnInitialUpdate();
  43. protected:
  44. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  45. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  46. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. protected:
  50. virtual ~CTypeLibODLView();
  51. #ifdef _DEBUG
  52. virtual void AssertValid() const;
  53. virtual void Dump(CDumpContext& dc) const;
  54. #endif
  55. // Generated message map functions
  56. protected:
  57. //{{AFX_MSG(CTypeLibODLView)
  58. afx_msg void OnDestroy();
  59. //}}AFX_MSG
  60. DECLARE_MESSAGE_MAP()
  61. };
  62. /////////////////////////////////////////////////////////////////////////////