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.

47 lines
1.1 KiB

  1. // ContRot.idl : IDL source for ContRot.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ContRot.tlb) and marshalling code.
  5. [
  6. object,
  7. uuid(b4e90800-b83c-11d0-8b40-00c0f00ae35a),
  8. dual,
  9. helpstring("IContentRotator Interface"),
  10. pointer_default(unique),
  11. oleautomation
  12. ]
  13. interface IContentRotator : IDispatch
  14. {
  15. import "oaidl.idl";
  16. [id(3), helpstring("The ChooseContent method retrieves an HTML content string from the Content Schedule file.")]
  17. HRESULT ChooseContent([in] BSTR bstrDataFile,
  18. [out, retval] BSTR* pbstrRetVal);
  19. [id(4), helpstring("The GetAllContent method retrieves all of the HTML content strings from the Content Schedule file.")]
  20. HRESULT GetAllContent([in] BSTR bstrDataFile);
  21. };
  22. [
  23. uuid(b4e90801-b83c-11d0-8b40-00c0f00ae35a),
  24. version(1.0),
  25. helpstring("MSWC Content Rotator Object Library")
  26. ]
  27. library ContentRotator
  28. {
  29. importlib("stdole2.tlb");
  30. [
  31. uuid(b4e90802-b83c-11d0-8b40-00c0f00ae35a),
  32. helpstring("ContentRotator Class")
  33. ]
  34. coclass ContentRotator
  35. {
  36. [default] interface IContentRotator;
  37. };
  38. };