MdComEvents_TLB.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:5k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit MdComEvents_TLB;
  2. // ************************************************************************ //
  3. // WARNING                                                                    
  4. // -------                                                                    
  5. // The types declared in this file were generated from data read from a       
  6. // Type Library. If this type library is explicitly or indirectly (via        
  7. // another type library referring to this type library) re-imported, or the   
  8. // 'Refresh' command of the Type Library Editor activated while editing the   
  9. // Type Library, the contents of this file will be regenerated and all        
  10. // manual modifications will be lost.                                         
  11. // ************************************************************************ //
  12. // PASTLWTR : $Revision:   1.118  $
  13. // File generated on 4/28/2001 4:54:54 PM from Type Library described below.
  14. // ************************************************************************  //
  15. // Type Lib: C:md6code20MdComEventsMdComEvents.dll (2)
  16. // LIBID: {F4A80A55-914B-49EF-93B1-B42EE5E37711}
  17. // LCID: 0
  18. // Helpfile: 
  19. // DepndLst: 
  20. //   (1) v2.0 stdole, (C:WINDOWSSystem32stdole2.tlb)
  21. // Parent TypeLibrary:
  22. //   (0) v1.0 EvtSubscriber, (C:md6code20MdComEventsEvtSubscriber.tlb)
  23. // ************************************************************************ //
  24. {$TYPEDADDRESS OFF} // Unit must be compiled without type-checked pointers. 
  25. {$WARN SYMBOL_PLATFORM OFF}
  26. {$WRITEABLECONST ON}
  27. interface
  28. uses ActiveX, Classes, Graphics, StdVcl, Variants, Windows;
  29.   
  30. // *********************************************************************//
  31. // GUIDS declared in the TypeLibrary. Following prefixes are used:        
  32. //   Type Libraries     : LIBID_xxxx                                      
  33. //   CoClasses          : CLASS_xxxx                                      
  34. //   DISPInterfaces     : DIID_xxxx                                       
  35. //   Non-DISP interfaces: IID_xxxx                                        
  36. // *********************************************************************//
  37. const
  38.   // TypeLibrary Major and minor versions
  39.   MdComEventsMajorVersion = 1;
  40.   MdComEventsMinorVersion = 0;
  41.   LIBID_MdComEvents: TGUID = '{F4A80A55-914B-49EF-93B1-B42EE5E37711}';
  42.   IID_IMdInform: TGUID = '{202D2CC8-8E6C-4E96-9C14-1FAAE3920ECC}';
  43.   CLASS_MdInform: TGUID = '{0C7A44A5-CC67-4B97-9051-BFE92328EB6B}';
  44. type
  45. // *********************************************************************//
  46. // Forward declaration of types defined in TypeLibrary                    
  47. // *********************************************************************//
  48.   IMdInform = interface;
  49.   IMdInformDisp = dispinterface;
  50. // *********************************************************************//
  51. // Declaration of CoClasses defined in Type Library                       
  52. // (NOTE: Here we map each CoClass to its Default Interface)              
  53. // *********************************************************************//
  54.   MdInform = IMdInform;
  55. // *********************************************************************//
  56. // Interface: IMdInform
  57. // Flags:     (4416) Dual OleAutomation Dispatchable
  58. // GUID:      {202D2CC8-8E6C-4E96-9C14-1FAAE3920ECC}
  59. // *********************************************************************//
  60.   IMdInform = interface(IDispatch)
  61.     ['{202D2CC8-8E6C-4E96-9C14-1FAAE3920ECC}']
  62.     procedure Informs(Code: Integer; const Message: WideString); safecall;
  63.   end;
  64. // *********************************************************************//
  65. // DispIntf:  IMdInformDisp
  66. // Flags:     (4416) Dual OleAutomation Dispatchable
  67. // GUID:      {202D2CC8-8E6C-4E96-9C14-1FAAE3920ECC}
  68. // *********************************************************************//
  69.   IMdInformDisp = dispinterface
  70.     ['{202D2CC8-8E6C-4E96-9C14-1FAAE3920ECC}']
  71.     procedure Informs(Code: Integer; const Message: WideString); dispid 1;
  72.   end;
  73. // *********************************************************************//
  74. // The Class CoMdInform provides a Create and CreateRemote method to          
  75. // create instances of the default interface IMdInform exposed by              
  76. // the CoClass MdInform. The functions are intended to be used by             
  77. // clients wishing to automate the CoClass objects exposed by the         
  78. // server of this typelibrary.                                            
  79. // *********************************************************************//
  80.   CoMdInform = class
  81.     class function Create: IMdInform;
  82.     class function CreateRemote(const MachineName: string): IMdInform;
  83.   end;
  84. implementation
  85. uses ComObj;
  86. class function CoMdInform.Create: IMdInform;
  87. begin
  88.   Result := CreateComObject(CLASS_MdInform) as IMdInform;
  89. end;
  90. class function CoMdInform.CreateRemote(const MachineName: string): IMdInform;
  91. begin
  92.   Result := CreateRemoteComObject(MachineName, CLASS_MdInform) as IMdInform;
  93. end;
  94. end.