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.

45 lines
1.3 KiB

  1. // ProcessResponse.idl : IDL source for ProcessResponse.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ProcessResponse.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(412733A9-1341-4832-95A3-3CEE7C626966),
  10. dual,
  11. helpstring("IDoEmailResponse Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IDoEmailResponse : IDispatch
  15. {
  16. [id(1), helpstring("method GetRedirectURL")] HRESULT GetRedirectURL([in] BSTR bstrEmailID, [in] int iUrlNum,
  17. [out] VARIANT *pVarRedirectURL, [out] VARIANT *pVarRandStr,
  18. [out,retval] VARIANT *pVarStatus);
  19. [id(2), helpstring("method CheckSecret")] HRESULT CheckSecret([in] BSTR bstrEmailID, [in] BSTR bstrSecret, [out,retval] VARIANT *pVarStatus);
  20. [id(3), helpstring("method SetResponseProcessed")] HRESULT SetResponseProcessed([in] BSTR bstrEmailID, [out,retval] VARIANT *pVarStatus);
  21. };
  22. [
  23. uuid(D12D9032-0D49-4202-8705-12000D5F89A7),
  24. version(1.0),
  25. helpstring("ProcessResponse 1.0 Type Library")
  26. ]
  27. library PROCESSRESPONSELib
  28. {
  29. importlib("stdole32.tlb");
  30. importlib("stdole2.tlb");
  31. [
  32. uuid(E8B5A480-C456-4A6C-8510-8BA0990918E7),
  33. helpstring("DoEmailResponse Class")
  34. ]
  35. coclass DoEmailResponse
  36. {
  37. [default] interface IDoEmailResponse;
  38. };
  39. };