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

Delphi控件源码

开发平台:

Delphi

  1. unit EvtSubscriber_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:md6code20MdComEventsEvtSubscriber.tlb (1)
  16. // LIBID: {CC4759F2-5BFD-4D5F-8B73-F251070EDADE}
  17. // LCID: 0
  18. // Helpfile: 
  19. // DepndLst: 
  20. //   (1) v2.0 stdole, (C:WINDOWSSystem32stdole2.tlb)
  21. //   (2) v4.0 StdVCL, (C:WINDOWSsystem32stdvcl40.dll)
  22. //   (3) v1.0 MdComEvents, (C:md6code20MdComEventsMdComEvents.dll)
  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, MdComEvents_TLB, 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.   EvtSubscriberMajorVersion = 1;
  40.   EvtSubscriberMinorVersion = 0;
  41.   LIBID_EvtSubscriber: TGUID = '{CC4759F2-5BFD-4D5F-8B73-F251070EDADE}';
  42.   CLASS_InformSubscriber: TGUID = '{30C23917-52CC-4581-9341-81D2430B39C3}';
  43. type
  44. // *********************************************************************//
  45. // Declaration of CoClasses defined in Type Library                       
  46. // (NOTE: Here we map each CoClass to its Default Interface)              
  47. // *********************************************************************//
  48.   InformSubscriber = IMdInform;
  49. // *********************************************************************//
  50. // The Class CoInformSubscriber provides a Create and CreateRemote method to          
  51. // create instances of the default interface IMdInform exposed by              
  52. // the CoClass InformSubscriber. The functions are intended to be used by             
  53. // clients wishing to automate the CoClass objects exposed by the         
  54. // server of this typelibrary.                                            
  55. // *********************************************************************//
  56.   CoInformSubscriber = class
  57.     class function Create: IMdInform;
  58.     class function CreateRemote(const MachineName: string): IMdInform;
  59.   end;
  60. implementation
  61. uses ComObj;
  62. class function CoInformSubscriber.Create: IMdInform;
  63. begin
  64.   Result := CreateComObject(CLASS_InformSubscriber) as IMdInform;
  65. end;
  66. class function CoInformSubscriber.CreateRemote(const MachineName: string): IMdInform;
  67. begin
  68.   Result := CreateRemoteComObject(MachineName, CLASS_InformSubscriber) as IMdInform;
  69. end;
  70. end.