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.

76 lines
3.0 KiB

  1. // RAssistance.idl : IDL source for RAssistance.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (RAssistance.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(08C8B592-FDD0-423C-9FD2-7D8C055EC5B3),
  10. dual,
  11. helpstring("IRASettingProperty Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IRASettingProperty : IDispatch
  15. {
  16. [propget, id(1), helpstring("property IsCancelled")] HRESULT IsCancelled([out, retval] BOOL *pVal);
  17. [propput, id(1), helpstring("property IsCancelled")] HRESULT IsCancelled(BOOL bVal);
  18. [propget, id(2), helpstring("property IsChanged")] HRESULT IsChanged([out, retval] BOOL *pVal);
  19. [id(3), helpstring("method Init")] HRESULT Init();
  20. [id(4), helpstring("method SetRegSetting")] HRESULT SetRegSetting();
  21. [id(5), helpstring("method ShowDialogBox")] HRESULT ShowDialogBox(HWND hWndParent);
  22. };
  23. [
  24. object,
  25. uuid(2464AA8D-7099-4C22-925C-81A4EB1FCFFE),
  26. dual,
  27. helpstring("IRARegSetting Interface"),
  28. pointer_default(unique)
  29. ]
  30. interface IRARegSetting : IDispatch
  31. {
  32. [propget, id(1), helpstring("property AllowGetHelp")] HRESULT AllowGetHelp([out, retval] BOOL *pVal);
  33. [propput, id(1), helpstring("property AllowGetHelp")] HRESULT AllowGetHelp([in] BOOL newVal);
  34. [propget, id(2), helpstring("property AllowUnSolicited")] HRESULT AllowUnSolicited([out, retval] BOOL *pVal);
  35. [propput, id(2), helpstring("property AllowUnSolicited")] HRESULT AllowUnSolicited([in] BOOL newVal);
  36. [propget, id(3), helpstring("property AllowFullControl")] HRESULT AllowFullControl([out, retval] BOOL *pVal);
  37. [propput, id(3), helpstring("property AllowFullControl")] HRESULT AllowFullControl([in] BOOL newVal);
  38. [propget, id(4), helpstring("property MaxTicketExpiry")] HRESULT MaxTicketExpiry([out, retval] LONG *pVal);
  39. [propput, id(4), helpstring("property MaxTicketExpiry")] HRESULT MaxTicketExpiry([in] LONG newVal);
  40. [propget, id(5), helpstring("property AllowRemoteAssistance")] HRESULT AllowRemoteAssistance([out, retval] BOOL *pVal);
  41. [propput, id(5), helpstring("property AllowRemoteAssistance")] HRESULT AllowRemoteAssistance([in] BOOL newVal);
  42. [propget, id(6), helpstring("property AllowUnSolicitedFullControl")] HRESULT AllowUnSolicitedFullControl([out, retval] BOOL* pVal);
  43. [propget, id(7), helpstring("property AllowBuddyHelp")] HRESULT AllowBuddyHelp([out, retval] BOOL* pVal);
  44. [propget, id(8), helpstring("property AllowGetHelpCPL")] HRESULT AllowGetHelpCPL([out, retval] BOOL *pVal);
  45. };
  46. [
  47. uuid(5190C4AF-AB0F-4235-B12F-D5A8FA3F854B),
  48. version(1.0),
  49. helpstring("RAssistance 1.0 Type Library")
  50. ]
  51. library RASSISTANCELib
  52. {
  53. importlib("stdole32.tlb");
  54. importlib("stdole2.tlb");
  55. [
  56. uuid(4D317113-C6EC-406A-9C61-20E891BC37F7),
  57. helpstring("RASettingProperty Class")
  58. ]
  59. coclass RASettingProperty
  60. {
  61. [default] interface IRASettingProperty;
  62. };
  63. [
  64. uuid(70FF37C0-F39A-4B26-AE5E-638EF296D490),
  65. helpstring("RARegSetting Class")
  66. ]
  67. coclass RARegSetting
  68. {
  69. [default] interface IRARegSetting;
  70. };
  71. };