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.

50 lines
1.2 KiB

  1. /*===================================================================
  2. Microsoft Denali
  3. Microsoft Confidential.
  4. Copyright 1997 Microsoft Corporation. All Rights Reserved.
  5. Component: Transascted Scripts Context Object
  6. File: TxnScrpt.idl
  7. IDL source for ObjectContext object
  8. This file will be processed by the MIDL tool to
  9. produce the type library (TxnScrpt.tlb) and marshalling code.
  10. Owner: AndrewS
  11. ===================================================================*/
  12. import "oaidl.idl";
  13. import "ocidl.idl";
  14. [
  15. object,
  16. uuid(D97A6DA2-9C1C-11D0-9C3C-00A0C922E764),
  17. helpstring("IASPObjectContext"),
  18. pointer_default(unique)
  19. ]
  20. interface IASPObjectContext : IDispatch
  21. {
  22. [id(1), helpstring("method SetComplete")] HRESULT SetComplete();
  23. [id(2), helpstring("method SetAbort")] HRESULT SetAbort();
  24. };
  25. [
  26. uuid(D97A6DA0-9C1C-11D0-9C3C-00A0C922E764),
  27. version(3.0),
  28. helpstring("Microsoft Active Server Pages ObjectContext Object Library")
  29. ]
  30. library ASPObjectContextTypeLibrary
  31. {
  32. importlib("stdole2.tlb");
  33. [
  34. uuid(14D0916D-9CDC-11D1-8C4A-00C04FC324A4),
  35. helpstring("ASP Object Context Class")
  36. ]
  37. coclass ASPObjectContext
  38. {
  39. [default] interface IASPObjectContext;
  40. };
  41. };