blob: d90247e0e9c49057654b26180ab9ce273714c65f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="com.nokia.profiled">
<signal name="profile_changed">
<arg name="changed" type="b" direction="out"/>
<arg name="active" type="b" direction="out"/>
<arg name="profile" type="s" direction="out"/>
<!-- TODO <arg type="a(sss)" direction="out"/> -->
</signal>
<method name="get_profile">
<arg name="profile" type="s" direction="out"/>
</method>
<method name="set_profile">
<arg name="profile" type="s" direction="in"/>
<arg name="success" type="b" direction="out"/>
</method>
</interface>
</node>
|