Source code of Windows XP (NT5)
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.

41 lines
922 B

  1. // ExEnum.idl : IDL source for ExEnum.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ExEnum.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(34F40F17-3C92-4695-8445-828499A208E4),
  10. helpstring("IEnumExch Interface"),
  11. pointer_default(unique)
  12. ]
  13. interface IEnumExch : IUnknown
  14. {
  15. [helpstring("method OpenServer")] HRESULT OpenServer(BSTR exchangeServer, BSTR credentials, BSTR password);
  16. [helpstring("method DoQuery")] HRESULT DoQuery(BSTR query, ULONG scope,BSTR basepoint,[in,out] IUnknown ** pVarSet);
  17. };
  18. [
  19. uuid(0D486472-8F68-4B24-8A85-0BD1FAB0FF35),
  20. version(1.0),
  21. helpstring("ExEnum 1.0 Type Library")
  22. ]
  23. library EXENUMLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(A85D3807-AB1C-41D2-B776-6BDBE9421364),
  29. helpstring("EnumExch Class")
  30. ]
  31. coclass EnumExch
  32. {
  33. [default] interface IEnumExch;
  34. };
  35. };