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

Delphi控件源码

开发平台:

Delphi

  1. unit ComPlus1_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 12:22:43 PM from Type Library described below.
  14. // ************************************************************************  //
  15. // Type Lib: C:md6code20ComPlus1ComPlus1.tlb (1)
  16. // LIBID: {AF035833-33FA-47F3-A0DF-769234960CCB}
  17. // LCID: 0
  18. // Helpfile: 
  19. // DepndLst: 
  20. //   (1) v2.0 stdole, (C:WINDOWSSystem32stdole2.tlb)
  21. //   (2) v4.0 StdVCL, (C:WINDOWSsystem32stdvcl40.dll)
  22. // ************************************************************************ //
  23. {$TYPEDADDRESS OFF} // Unit must be compiled without type-checked pointers. 
  24. {$WARN SYMBOL_PLATFORM OFF}
  25. {$WRITEABLECONST ON}
  26. interface
  27. uses ActiveX, Classes, Graphics, StdVcl, Variants, Windows;
  28.   
  29. // *********************************************************************//
  30. // GUIDS declared in the TypeLibrary. Following prefixes are used:        
  31. //   Type Libraries     : LIBID_xxxx                                      
  32. //   CoClasses          : CLASS_xxxx                                      
  33. //   DISPInterfaces     : DIID_xxxx                                       
  34. //   Non-DISP interfaces: IID_xxxx                                        
  35. // *********************************************************************//
  36. const
  37.   // TypeLibrary Major and minor versions
  38.   ComPlus1MajorVersion = 1;
  39.   ComPlus1MinorVersion = 0;
  40.   LIBID_ComPlus1: TGUID = '{AF035833-33FA-47F3-A0DF-769234960CCB}';
  41.   IID_IComPlus1Object: TGUID = '{16D85A0C-9B8F-46E6-821F-E72E5A0294BC}';
  42.   CLASS_ComPlus1Object: TGUID = '{3E930EF3-CE24-474C-9A33-EF1F02E2930A}';
  43. type
  44. // *********************************************************************//
  45. // Forward declaration of types defined in TypeLibrary                    
  46. // *********************************************************************//
  47.   IComPlus1Object = interface;
  48.   IComPlus1ObjectDisp = dispinterface;
  49. // *********************************************************************//
  50. // Declaration of CoClasses defined in Type Library                       
  51. // (NOTE: Here we map each CoClass to its Default Interface)              
  52. // *********************************************************************//
  53.   ComPlus1Object = IComPlus1Object;
  54. // *********************************************************************//
  55. // Interface: IComPlus1Object
  56. // Flags:     (4416) Dual OleAutomation Dispatchable
  57. // GUID:      {16D85A0C-9B8F-46E6-821F-E72E5A0294BC}
  58. // *********************************************************************//
  59.   IComPlus1Object = interface(IDispatch)
  60.     ['{16D85A0C-9B8F-46E6-821F-E72E5A0294BC}']
  61.     function  Get_Value: Integer; safecall;
  62.     procedure Set_Value(Value: Integer); safecall;
  63.     procedure Increase(Amount: Integer); safecall;
  64.     function  AsString: WideString; safecall;
  65.     property Value: Integer read Get_Value write Set_Value;
  66.   end;
  67. // *********************************************************************//
  68. // DispIntf:  IComPlus1ObjectDisp
  69. // Flags:     (4416) Dual OleAutomation Dispatchable
  70. // GUID:      {16D85A0C-9B8F-46E6-821F-E72E5A0294BC}
  71. // *********************************************************************//
  72.   IComPlus1ObjectDisp = dispinterface
  73.     ['{16D85A0C-9B8F-46E6-821F-E72E5A0294BC}']
  74.     property Value: Integer dispid 1;
  75.     procedure Increase(Amount: Integer); dispid 2;
  76.     function  AsString: WideString; dispid 3;
  77.   end;
  78. // *********************************************************************//
  79. // The Class CoComPlus1Object provides a Create and CreateRemote method to          
  80. // create instances of the default interface IComPlus1Object exposed by              
  81. // the CoClass ComPlus1Object. The functions are intended to be used by             
  82. // clients wishing to automate the CoClass objects exposed by the         
  83. // server of this typelibrary.                                            
  84. // *********************************************************************//
  85.   CoComPlus1Object = class
  86.     class function Create: IComPlus1Object;
  87.     class function CreateRemote(const MachineName: string): IComPlus1Object;
  88.   end;
  89. implementation
  90. uses ComObj;
  91. class function CoComPlus1Object.Create: IComPlus1Object;
  92. begin
  93.   Result := CreateComObject(CLASS_ComPlus1Object) as IComPlus1Object;
  94. end;
  95. class function CoComPlus1Object.CreateRemote(const MachineName: string): IComPlus1Object;
  96. begin
  97.   Result := CreateRemoteComObject(MachineName, CLASS_ComPlus1Object) as IComPlus1Object;
  98. end;
  99. end.