1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import "oaidl.idl";
import "ocidl.idl";
[
object,
uuid(e051a481-6345-4ba1-bdb1-cf7929955268),
dual,
nonextensible,
helpstring("IDaemonControl Interface"),
pointer_default(unique)
]
interface IDaemonControl: IDispatch {
[ id(1), helpstring("Returns a filtered copy of the daemon's configuration. "
"Only 'host_id' and 'xmpp_login' values are returned, "
"because any other values may contain security-sensitive "
"information.") ]
HRESULT GetConfig([out, retval] BSTR* config_out);
[ id(2), helpstring("Returns a string representing the version of "
"the daemon.") ]
HRESULT GetVersion([out, retval] BSTR* version_out);
[ id(3), helpstring("Replaces the existing daemon's configuration with "
"the specified settings.") ]
HRESULT SetConfig([in] BSTR config);
[ id(4), helpstring("Sets the owner window for any windows shown by "
"the daemon controller.") ]
HRESULT SetOwnerWindow([in] LONG_PTR owner_window);
[ id(5), helpstring("Starts the daemon.") ]
HRESULT StartDaemon();
[ id(6), helpstring("Stops the daemon.") ]
HRESULT StopDaemon();
[ id(7), helpstring("Modifies the existing daemon's configuration by "
"merging it with the specified settings. The 'host_id' "
"and 'xmpp_login' values cannot be modified, and must "
"not be passed to this method.") ]
HRESULT UpdateConfig([in] BSTR config);
};
[
uuid(9d9a5a2c-576e-4acd-9c75-aabff74b205d),
version(1.0),
helpstring("Chromoting Elevated Controller 1.0 Type Library")
]
library ChromotingElevatedControllerLib {
importlib("stdole2.tlb");
[
uuid(430a9403-8176-4733-afdc-0b325a8fda84),
helpstring("ElevatedController Class")
]
coclass ElevatedController {
[default] interface IDaemonControl;
};
};
|