Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1021 B

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1996 - 1999
  5. //
  6. // File: certsrvd.idl
  7. //
  8. // Contents: Definition of DCOM Interface for RPC services
  9. //
  10. //---------------------------------------------------------------------------
  11. import "unknwn.idl";
  12. import "certbase.idl";
  13. import "certadmd.idl";
  14. import "certreqd.idl";
  15. [
  16. uuid(d99e6e72-fc88-11d0-b498-00a0c90312f3),
  17. version(1.0),
  18. helpstring("CertSrv DCOM Type Library")
  19. ]
  20. library ServerLib
  21. {
  22. importlib("stdole32.tlb");
  23. [
  24. uuid(d99e6e73-fc88-11d0-b498-00a0c90312f3),
  25. helpstring("CertSrv Admin DCOM class")
  26. ]
  27. coclass CCertAdminD
  28. {
  29. [default] interface ICertAdminD2;
  30. };
  31. [
  32. uuid(d99e6e74-fc88-11d0-b498-00a0c90312f3),
  33. helpstring("CertSrv Request DCOM class")
  34. ]
  35. coclass CCertRequestD
  36. {
  37. [default] interface ICertRequestD2;
  38. };
  39. };