77 lines
3 KiB
Plaintext
77 lines
3 KiB
Plaintext
// RAssistance.idl : IDL source for RAssistance.dll
|
|
//
|
|
|
|
// This file will be processed by the MIDL tool to
|
|
// produce the type library (RAssistance.tlb) and marshalling code.
|
|
|
|
import "oaidl.idl";
|
|
import "ocidl.idl";
|
|
|
|
[
|
|
object,
|
|
uuid(08C8B592-FDD0-423C-9FD2-7D8C055EC5B3),
|
|
dual,
|
|
helpstring("IRASettingProperty Interface"),
|
|
pointer_default(unique)
|
|
]
|
|
interface IRASettingProperty : IDispatch
|
|
{
|
|
[propget, id(1), helpstring("property IsCancelled")] HRESULT IsCancelled([out, retval] BOOL *pVal);
|
|
[propput, id(1), helpstring("property IsCancelled")] HRESULT IsCancelled(BOOL bVal);
|
|
[propget, id(2), helpstring("property IsChanged")] HRESULT IsChanged([out, retval] BOOL *pVal);
|
|
[id(3), helpstring("method Init")] HRESULT Init();
|
|
[id(4), helpstring("method SetRegSetting")] HRESULT SetRegSetting();
|
|
[id(5), helpstring("method ShowDialogBox")] HRESULT ShowDialogBox(HWND hWndParent);
|
|
};
|
|
[
|
|
object,
|
|
uuid(2464AA8D-7099-4C22-925C-81A4EB1FCFFE),
|
|
dual,
|
|
helpstring("IRARegSetting Interface"),
|
|
pointer_default(unique)
|
|
]
|
|
interface IRARegSetting : IDispatch
|
|
{
|
|
[propget, id(1), helpstring("property AllowGetHelp")] HRESULT AllowGetHelp([out, retval] BOOL *pVal);
|
|
[propput, id(1), helpstring("property AllowGetHelp")] HRESULT AllowGetHelp([in] BOOL newVal);
|
|
[propget, id(2), helpstring("property AllowUnSolicited")] HRESULT AllowUnSolicited([out, retval] BOOL *pVal);
|
|
[propput, id(2), helpstring("property AllowUnSolicited")] HRESULT AllowUnSolicited([in] BOOL newVal);
|
|
[propget, id(3), helpstring("property AllowFullControl")] HRESULT AllowFullControl([out, retval] BOOL *pVal);
|
|
[propput, id(3), helpstring("property AllowFullControl")] HRESULT AllowFullControl([in] BOOL newVal);
|
|
[propget, id(4), helpstring("property MaxTicketExpiry")] HRESULT MaxTicketExpiry([out, retval] LONG *pVal);
|
|
[propput, id(4), helpstring("property MaxTicketExpiry")] HRESULT MaxTicketExpiry([in] LONG newVal);
|
|
[propget, id(5), helpstring("property AllowRemoteAssistance")] HRESULT AllowRemoteAssistance([out, retval] BOOL *pVal);
|
|
[propput, id(5), helpstring("property AllowRemoteAssistance")] HRESULT AllowRemoteAssistance([in] BOOL newVal);
|
|
[propget, id(6), helpstring("property AllowUnSolicitedFullControl")] HRESULT AllowUnSolicitedFullControl([out, retval] BOOL* pVal);
|
|
[propget, id(7), helpstring("property AllowBuddyHelp")] HRESULT AllowBuddyHelp([out, retval] BOOL* pVal);
|
|
[propget, id(8), helpstring("property AllowGetHelpCPL")] HRESULT AllowGetHelpCPL([out, retval] BOOL *pVal);
|
|
};
|
|
|
|
[
|
|
uuid(5190C4AF-AB0F-4235-B12F-D5A8FA3F854B),
|
|
version(1.0),
|
|
helpstring("RAssistance 1.0 Type Library")
|
|
]
|
|
library RASSISTANCELib
|
|
{
|
|
importlib("stdole32.tlb");
|
|
importlib("stdole2.tlb");
|
|
|
|
[
|
|
uuid(4D317113-C6EC-406A-9C61-20E891BC37F7),
|
|
helpstring("RASettingProperty Class")
|
|
]
|
|
coclass RASettingProperty
|
|
{
|
|
[default] interface IRASettingProperty;
|
|
};
|
|
[
|
|
uuid(70FF37C0-F39A-4B26-AE5E-638EF296D490),
|
|
helpstring("RARegSetting Class")
|
|
]
|
|
coclass RARegSetting
|
|
{
|
|
[default] interface IRARegSetting;
|
|
};
|
|
};
|