InterfaceCA.pas 518 B

123456789101112131415161718192021222324
  1. unit InterfaceCA;
  2. interface
  3. type
  4. ICAConfig = interface
  5. ['{C26F30F4-9263-44EA-BE03-F4A4AC1CB2C7}']
  6. function GetAppID: string; stdcall;
  7. function GetEnable: Boolean; stdcall;
  8. function GetURL: string; stdcall;
  9. function GetCASubject: string; stdcall;
  10. // function GetIsChooseCa: Boolean; stdcall;
  11. // procedure SetIsChooseCa(AValue: Boolean); stdcall;
  12. end;
  13. ICAClient = interface
  14. ['{3AB63609-78D6-4B85-A9F5-8D9947E8E6A6}']
  15. function Request: string; stdcall;
  16. end;
  17. implementation
  18. end.