Leaked source code of windows server 2003

34 lines
1.1 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1996 - 1999
  5. //
  6. // File: certrpc.idl
  7. //
  8. // Contents: Definition of RPC Interface for Certificate Server
  9. //
  10. //---------------------------------------------------------------------------
  11. import "certbase.idl";
  12. [
  13. uuid(91ae6020-9e3c-11cf-8d7c-00aa00c091be),
  14. pointer_default(unique)
  15. ]
  16. // The interface to the Cert server
  17. interface ICertPassage
  18. {
  19. DWORD CertServerRequest(
  20. [in] handle_t h,
  21. [in] DWORD dwFlags,
  22. [in, string, unique] wchar_t const *pwszAuthority,
  23. [in, out, ref] DWORD *pdwRequestId,
  24. [out] DWORD *pdwDisposition,
  25. [in, ref] CERTTRANSBLOB const *pctbAttribs,
  26. [in, ref] CERTTRANSBLOB const *pctbRequest,
  27. [out, ref] CERTTRANSBLOB *pctbCert,
  28. [out, ref] CERTTRANSBLOB *pctbEncodedCert,
  29. [out, ref] CERTTRANSBLOB *pctbDispositionMessage);
  30. }