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.

39 lines
1.5 KiB

  1. // ActCtx.idl : IDL source for ActCtx.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ActCtx.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(8FA7728F-B69B-4EE5-99F2-E2AA021BEF28),
  10. dual,
  11. helpstring("IActCtx Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IActCtx : IDispatch
  15. {
  16. [propget, id(1), helpstring("property Manifest")] HRESULT Manifest([out, retval] BSTR *pVal);
  17. [propput, id(1), helpstring("property Manifest")] HRESULT Manifest([in] BSTR newVal);
  18. [propget, id(2), helpstring("property ManifestText")] HRESULT ManifestText([out, retval] BSTR *pVal);
  19. [propput, id(2), helpstring("property ManifestText")] HRESULT ManifestText([in] BSTR newVal);
  20. [propget, id(3), helpstring("property ManifestURL")] HRESULT ManifestURL([out, retval] BSTR *pVal);
  21. [propput, id(3), helpstring("property ManifestURL")] HRESULT ManifestURL([in] BSTR newVal);
  22. [id(4), helpstring("method CreateObject")] HRESULT CreateObject(BSTR bstrObjectReference, [in, optional] VARIANT *pvarLocation, [out, retval] IDispatch **ppObject);
  23. [id(5), helpstring("method GetObject")] HRESULT GetObject([in, optional] VARIANT *pvarMoniker, [in, optional] VARIANT *pvarProgID, [out, retval] IDispatch **ppObject);
  24. };
  25. [
  26. uuid(8143C9AA-38F8-4729-B935-DF6823C616C6),
  27. version(1.0),
  28. helpstring("Microsoft.Windows.IsolationAutomation Type Library")
  29. ]
  30. library ACTCTXPSLib
  31. {
  32. importlib("stdole32.tlb");
  33. importlib("stdole2.tlb");
  34. interface IActCtx;
  35. };